Skip to content

Commit

Permalink
epicsdbbuilder: init at 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Synthetica9 committed Nov 29, 2024
1 parent 40f8230 commit 46e0ac8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ in
epicscorelibs = final.callPackage ./epnix/python-modules/epicscorelibs {};
pvxslibs = final.callPackage ./epnix/python-modules/pvxslibs {};
aioca = final.callPackage ./epnix/python-modules/aioca/default.nix {};
epicsdbbuilder = final.callPackage ./epnix/python-modules/epicsdbbuilder {};

# epicscorelibs needs at least 2.11.
# TODO: remove for NixOS 24.11
Expand Down
24 changes: 24 additions & 0 deletions pkgs/epnix/python-modules/epicsdbbuilder/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
epnixLib,
}:
buildPythonPackage rec {
pname = "epicsdbbuilder";
version = "1.5";

src = fetchFromGitHub {
owner = "DiamondLightSource";
repo = pname;
rev = version;
hash = "sha256-H+8dJY6nY/4ogxcoZVmZzI7STI4x0urQKddlTifAqGQ=";
};

meta = {
description = "Tool for building EPICS databases";
homepage = "https://DiamondLightSource.github.io/epicsdbbuilder";
license = lib.licenses.asl20;
maintainers = with epnixLib.maintainers; [synthetica];
};
}

0 comments on commit 46e0ac8

Please sign in to comment.