mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 14:13:14 -06:00
21 lines
392 B
Nix
21 lines
392 B
Nix
|
{
|
||
|
fetchFromGitHub,
|
||
|
buildNimPackage,
|
||
|
# deps
|
||
|
openssl,
|
||
|
|
||
|
}:
|
||
|
buildNimPackage (finalAttrs: {
|
||
|
pname = "nimble";
|
||
|
version = "0.16.1";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nim-lang";
|
||
|
repo = "nimble";
|
||
|
rev = "v${finalAttrs.version}";
|
||
|
hash = "sha256-sa0irAZjQRZLduEMBPf7sHlY1FigBJTR/vIH4ihii/w=";
|
||
|
};
|
||
|
buildInputs = [ openssl ];
|
||
|
lockFile = ./lock.json;
|
||
|
doCheck = false;
|
||
|
})
|