-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,10 @@ Please keep the list alphabetically sorted. | |
See `<nixpkgs/maintainers/scripts/check-maintainer-github-handles.sh>` for an example on how to work with this data. | ||
*/ | ||
{ | ||
agaget = { | ||
email = "[email protected]"; | ||
name = "Alexis Gaget"; | ||
}; | ||
minijackson = { | ||
email = "[email protected]"; | ||
name = "Rémi Nicole"; | ||
|
@@ -62,8 +66,4 @@ See `<nixpkgs/maintainers/scripts/check-maintainer-github-handles.sh>` for an ex | |
email = "[email protected]"; | ||
name = "Stéphane Tzvetkov"; | ||
}; | ||
agaget = { | ||
email = "[email protected]"; | ||
name = "Alexis Gaget"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
lib, | ||
epnix, | ||
epnixLib, | ||
mkEpicsPackage, | ||
fetchFromGitHub, | ||
fetchpatch, | ||
local_config_site ? {}, | ||
local_release ? {}, | ||
}: | ||
mkEpicsPackage rec { | ||
pname = "mrfioc2"; | ||
version = "2.6.0"; | ||
varname = "MRFIOC2"; | ||
|
||
inherit local_config_site local_release; | ||
|
||
src = fetchFromGitHub { | ||
owner = "epics-modules"; | ||
repo = "mrfioc2"; | ||
rev = version; | ||
sha256 = "sha256-pmuM4HrHlZ63BcZACZOlMAPic1IOQ/kLpi9lo/raP0U="; | ||
}; | ||
|
||
propagatedBuildInputs = with epnix.support; [devlib2]; | ||
|
||
postInstall = '' | ||
if [[ -d iocBoot ]]; then | ||
cp -rafv iocBoot -t "$out" | ||
fi | ||
''; | ||
|
||
meta = { | ||
description = "Driver EPICS for MRF cards"; | ||
homepage = "https://github.com/epics-modules/mrfioc2"; | ||
license = epnixLib.licenses.epics; | ||
maintainers = with epnixLib.maintainers; [agaget]; | ||
}; | ||
} |