oizys/pkgs/oizys/default.nix

16 lines
302 B
Nix

{
lib,
openssl,
buildNimblePackage,
}:
buildNimblePackage {
name = "oizys";
version = "unstable";
src = lib.cleanSource ./.;
nativeBuildInputs = [ openssl ];
nimbleDepsHash = "sha256-dFJw/m7D5UFUrHH7exsyHknt8WHIK1QIQATNd5l7FZA=";
meta = {
description = "nix begat oizys";
};
}