mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-02 19:14:17 -06:00
15 lines
301 B
Nix
15 lines
301 B
Nix
{
|
|
lib,
|
|
openssl,
|
|
buildNimblePackage,
|
|
}:
|
|
buildNimblePackage {
|
|
name = "oizys";
|
|
version = "unstable";
|
|
src = lib.cleanSource ./.;
|
|
nativeBuildInputs = [ openssl ];
|
|
nimbleDepsHash = "sha256-wuTGoswuAxAOOPDDI6Ma8Xzq1CApCfT+fAQmJg+VeYM=";
|
|
meta = {
|
|
description = "nix begat oizys";
|
|
};
|
|
}
|