1
0
Fork 0

Fix kassandra

This commit is contained in:
Malte Brandy 2020-09-16 23:21:25 +02:00
parent b61b5dea82
commit fbae32fac1
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 8 additions and 7 deletions

View file

@ -95,6 +95,12 @@
"url": "https://github.com/obsidiansystems/obelisk/archive/4f2d3f1c1312d833ae814b7a86cf7b65ea0614ec.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"kassandra": {
"ref": "master",
"repo": "https://git.darmstadt.ccc.de/maralorn/kassandra",
"rev": "8abb3558ac2253733cdc53d973ce283846f38984",
"type": "git"
},
"unstable": {
"branch": "nixos-unstable",
"description": "Nixpkgs/NixOS branches that track the Nixpkgs/NixOS channels",

View file

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