oizys/pkgs/oizys/default.nix
2024-11-13 11:45:38 -06:00

16 lines
302 B
Nix

{
lib,
openssl,
buildNimblePackage,
}:
buildNimblePackage {
name = "oizys";
verions = "unstable";
src = lib.cleanSource ./.;
nativeBuildInputs = [ openssl ];
nimbleDepsHash = "sha256-J/iuDYR5A771zAuRKA94rwXX9L3+KtiodDxQRFO0GEc=";
meta = {
description = "nix begat oizys";
};
}