nixpkgs/pkgs/development/tools/rust/cargo-make/default.nix

34 lines
953 B
Nix
Raw Normal View History

{ stdenv, fetchurl, runCommand, fetchCrate, rustPlatform, Security, openssl, pkg-config
, SystemConfiguration
}:
2019-05-10 19:50:30 -07:00
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
version = "0.32.8";
2019-05-10 19:50:30 -07:00
src = fetchCrate {
inherit pname version;
sha256 = "sha256-TwutU4RjiYtxc2vT67Bgqe/WRHi5aXwgzvZu7Wk4Cao=";
};
2019-05-10 19:50:30 -07:00
nativeBuildInputs = [ pkg-config ];
2019-05-10 19:50:30 -07:00
buildInputs = [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
cargoSha256 = "sha256-HzRriPVaMn6qDu6h/NQjILglO4/0//8J1orV4Uz+XEI=";
2019-05-10 19:50:30 -07:00
# Some tests fail because they need network access.
# However, Travis ensures a proper build.
# See also:
# https://travis-ci.org/sagiegurari/cargo-make
doCheck = false;
meta = with stdenv.lib; {
description = "A Rust task runner and build tool";
2019-06-26 21:37:48 -07:00
homepage = "https://github.com/sagiegurari/cargo-make";
2019-05-10 19:50:30 -07:00
license = licenses.asl20;
maintainers = with maintainers; [ xrelkd ma27 ];
2019-05-10 19:50:30 -07:00
};
}