mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, installShellFiles
|
|
, bzip2
|
|
, openssl
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-make";
|
|
version = "0.37.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sagiegurari";
|
|
repo = "cargo-make";
|
|
rev = version;
|
|
hash = "sha256-PmCpm+ZOqnJdGrQtOciU6hEKV2lfoUT8bGtWzRpBXxQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-RjsYrFbS/OiMQKTiPshGcBI9KF75Z5stn2HaB6mniZE=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
openssl
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion extra/shell/*.bash
|
|
'';
|
|
|
|
# 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 lib; {
|
|
description = "Rust task runner and build tool";
|
|
homepage = "https://github.com/sagiegurari/cargo-make";
|
|
changelog = "https://github.com/sagiegurari/cargo-make/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda xrelkd ];
|
|
mainProgram = "cargo-make";
|
|
};
|
|
}
|