mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 18:13:16 -06:00
15 lines
309 B
Nix
15 lines
309 B
Nix
|
{ fetchFromGitHub, buildNimPackage }:
|
||
|
buildNimPackage (finalAttrs: {
|
||
|
pname = "nph";
|
||
|
version = "0.6.0";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "arnetheduck";
|
||
|
repo = "nph";
|
||
|
rev = "v${finalAttrs.version}";
|
||
|
hash = "sha256-9t5VeGsxyytGdu7+Uv/J+x6bmeB5+eQapbyp30iPxqs=";
|
||
|
};
|
||
|
|
||
|
doCheck = false;
|
||
|
}
|
||
|
)
|