39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, pkg-config
|
|
, libsodium, libarchive, openssl, zeromq }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "habitat";
|
|
# Newer versions required protobuf, which requires some finesse to get to
|
|
# compile with the vendored protobuf crate.
|
|
version = "0.90.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "habitat-sh";
|
|
repo = "habitat";
|
|
rev = version;
|
|
sha256 = "0rwi0lkmhlq4i8fba3s9nd9ajhz2dqxzkgfp5i8y0rvbfmhmfd6b";
|
|
};
|
|
|
|
cargoSha256 = "08sncz0jgsr2s821j3s4bk7d54xqwmnld7m57avavym1xqvsnbmy";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libsodium libarchive openssl zeromq ];
|
|
|
|
cargoBuildFlags = ["--package hab"];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
echo "Running cargo test"
|
|
cargo test --package hab
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An application automation framework";
|
|
homepage = "https://www.habitat.sh";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rushmorem ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|