mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 14:13:14 -06:00
13 lines
248 B
Nix
13 lines
248 B
Nix
|
{
|
||
|
lib,
|
||
|
openssl,
|
||
|
buildNimblePackage,
|
||
|
}:
|
||
|
buildNimblePackage {
|
||
|
name = "oizys";
|
||
|
verions = "unstable";
|
||
|
src = lib.cleanSource ./.;
|
||
|
nativeBuildInputs = [ openssl ];
|
||
|
nimbleDepsHash = "sha256-Eheeve4MbB3v1oVj0mB36Mv2Q3vJGLEbbShds1af23g=";
|
||
|
}
|