1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-06 12:33:51 +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-10-17 22:00:40 +01:00
version = "0.32.7";
2019-05-11 03:50:30 +01:00
src = fetchCrate {
inherit pname version;
2020-10-17 22:00:40 +01:00
sha256 = "0x8alv0jdk7xl63b2m4696w2hwqnbwxfqz6f3gisljll42xp6n2z";
};
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-10-17 22:00:40 +01:00
cargoSha256 = "1y2izxlc1nz3kqzrnhh9ir8j1gwvpj4cma2iqd65s9cf7xpkr6cx";
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
};
}