aparte: add lib.hydraJob

This commit is contained in:
Astro 2019-12-28 19:42:37 +01:00
parent 6c34e34069
commit 96c0165e8c
1 changed files with 8 additions and 7 deletions

View File

@ -11,11 +11,12 @@ let
rustc = rust; rustc = rust;
cargo = rust; cargo = rust;
}); });
in aparte = rustPlatform.buildRustPackage {
name = "aparte";
rustPlatform.buildRustPackage { src = <aparte>;
name = "aparte"; cargoSha256 = "1r93cvbhckz0a933pc2lcjvsw9zv8s8a2z6z5qiy9y4zzrhi7zv5";
src = <aparte>; buildInputs = [ pkgconfig openssl ];
cargoSha256 = "1r93cvbhckz0a933pc2lcjvsw9zv8s8a2z6z5qiy9y4zzrhi7zv5"; };
buildInputs = [ pkgconfig openssl ]; in {
aparte = lib.hydraJob aparte;
} }