Skip to content

Commit

Permalink
pkgs/pcas: init at 4.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Oct 13, 2023
1 parent 14b3f86 commit cb75c51
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ with prev;

archiver-appliance = callPackage ./epnix/tools/archiver-appliance {};

pcas = callPackage ./epnix/tools/pcas {};

phoebus = callPackage ./epnix/tools/phoebus/client {
# TODO: uncomment when this works:
# TODO: add libjfxwebkit.so into openjfx
Expand Down
24 changes: 24 additions & 0 deletions pkgs/epnix/tools/pcas/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
epnixLib,
mkEpicsPackage,
fetchFromGitHub,
}:
mkEpicsPackage rec {
pname = "pcas";
version = "4.13.3";
varname = "PCAS";

src = fetchFromGitHub {
owner = "epics-modules";
repo = pname;
rev = "v${version}";
hash = "sha256-wwU2/4CHI/dExqfFL1AzK7d+cMRGU1oxSlhb/3xY7xs=";
};

meta = {
description = "Portable Channel Access Server";
homepage = "https://github.com/epics-modules/pcas";
license = epnixLib.licenses.epics;
maintainers = with epnixLib.maintainers; [minijackson];
};
}

0 comments on commit cb75c51

Please sign in to comment.