1
0
Fork 0

Commit kassandra

This commit is contained in:
Malte Brandy 2020-09-16 22:20:51 +02:00
parent 0bd6551f6f
commit 0e64a0e5f4
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -0,0 +1,17 @@
self: super: {
kassandra = self.callPackage
({ lib, rustPlatform, pkgconfig, openssl, fetchgit }:
rustPlatform.buildRustPackage {
pname = "kassandra";
version = "no-version";
src = fetchgit {
url = "git@hera.m-0.eu:kassandra";
fetchSubmodules = true;
sha256 = "0000000000000000000000000000000000000000000000000000000000000000";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ];
cargoSha256 = "1ilpw4pzm8fqim29jzwlfgz1jyblragalm50vqyj1n11piapxzlk";
CARGO_NET_GIT_FETCH_WITH_CLI = true;
}) { };
}