Add noulith

master
Yorick van Pelt 2023-12-28 13:41:27 +01:00
parent 47e7b45a24
commit bd67172ea0
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
2 changed files with 18 additions and 0 deletions

View File

@ -214,6 +214,7 @@ in {
python3
silver-searcher
sqlite
noulith
## nix
nix-tree

View File

@ -79,4 +79,21 @@
});
}
);
noulith = self.rustPlatform.buildRustPackage rec {
pname = "noulith";
version = "20231228";
src = self.fetchFromGitHub {
owner = "betaveros";
rev = "3bce693335d8170895407846c237b6dad10ef7ec";
repo = pname;
hash = "sha256-Ye/Htcp9lrRo80ix4QQ+lDZSmpDSA6t1MCcWL6yTvGg=";
};
buildFeatures = [ "cli" "request" "crypto" ];
cargoHash = "sha256-N/BeeJIkbEccELqZhTFkHiaWJZgNiBazQLRqkqtPfJY=";
nativeBuildInputs = [ self.pkg-config ];
buildInputs = [ self.openssl.dev ];
};
})