nixpkgs/pkgs/applications/networking/cluster/habitat/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig
, libsodium, libarchive, openssl, zeromq }:
2016-06-25 19:44:54 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "habitat";
# Newer versions required protobuf, which requires some finesse to get to
# compile with the vendored protobuf crate.
version = "0.90.6";
2016-06-25 19:44:54 +00:00
2016-06-26 18:31:24 +00:00
src = fetchFromGitHub {
owner = "habitat-sh";
repo = "habitat";
rev = version;
sha256 = "0rwi0lkmhlq4i8fba3s9nd9ajhz2dqxzkgfp5i8y0rvbfmhmfd6b";
2016-06-25 19:44:54 +00:00
};
cargoSha256 = "08sncz0jgsr2s821j3s4bk7d54xqwmnld7m57avavym1xqvsnbmy";
2016-06-25 19:44:54 +00:00
2016-06-26 18:31:24 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsodium libarchive openssl zeromq ];
2016-06-25 19:44:54 +00:00
2017-02-19 02:23:58 +00:00
cargoBuildFlags = ["--package hab"];
checkPhase = ''
runHook preCheck
echo "Running cargo test"
cargo test --package hab
runHook postCheck
'';
meta = with stdenv.lib; {
2016-06-25 19:44:54 +00:00
description = "An application automation framework";
homepage = "https://www.habitat.sh";
2016-06-25 19:44:54 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ rushmorem ];
platforms = [ "x86_64-linux" ];
2016-06-25 19:44:54 +00:00
};
}