1
0
Fork 0
nixos-config/overlays/kassandra/default.nix

15 lines
443 B
Nix
Raw Normal View History

2020-09-16 20:20:51 +00:00
self: super: {
kassandra = self.callPackage
({ lib, rustPlatform, pkgconfig, openssl, fetchgit }:
rustPlatform.buildRustPackage {
pname = "kassandra";
version = "no-version";
2020-09-16 21:21:25 +00:00
src = super.sources.kassandra;
2020-09-16 20:20:51 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ];
2020-12-21 02:24:54 +00:00
cargoSha256 = "0nlc09sh679vfq7n08836mnjsax2pnskm64jk3c6k0l2spina3nd";
doCheck = false;
2021-05-18 14:33:28 +00:00
})
{ };
2020-09-16 20:20:51 +00:00
}