oizys/pkgs/oizys/default.nix
2025-01-26 14:42:49 -06:00

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";
};
}