1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/rust/cargo-make/default.nix

34 lines
955 B
Nix
Raw Normal View History

{ stdenv, fetchurl, runCommand, fetchCrate, rustPlatform, Security, openssl, pkg-config
, SystemConfiguration
}:
2019-05-11 03:50:30 +01:00
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
2020-11-10 23:33:45 +00:00
version = "0.32.9";
2019-05-11 03:50:30 +01:00
src = fetchCrate {
inherit pname version;
2020-11-10 23:33:45 +00:00
sha256 = "0f6avprq0d65v5fk3kn2kvw3w024f21yq6v8y7d9rbwqxxf87jlf";
};
2019-05-11 03:50:30 +01:00
nativeBuildInputs = [ pkg-config ];
2019-05-11 03:50:30 +01:00
buildInputs = [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
2020-11-10 23:33:45 +00:00
cargoSha256 = "0v0657hh8ivqaq4sn0saaiz06shxavhrh9mksjlzj7c2ym6cxkih";
2019-05-11 03:50:30 +01: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-27 05:37:48 +01:00
homepage = "https://github.com/sagiegurari/cargo-make";
2019-05-11 03:50:30 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ xrelkd ma27 ];
2019-05-11 03:50:30 +01:00
};
}