nixpkgs-suyu/pkgs/development/tools/rust/cargo-generate/default.nix

34 lines
963 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, openssl, pkgconfig, libiconv, curl }:
2019-07-03 13:58:15 +02:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "cargo-generate";
2020-09-24 22:18:25 +02:00
version = "0.5.1";
2019-07-03 13:58:15 +02:00
src = fetchFromGitHub {
owner = "ashleygwilliams";
repo = "cargo-generate";
rev = "v${version}";
2020-09-24 22:18:25 +02:00
sha256 = "0rq0anz0cawrgsinqyjh8wb3dgha09wx3ydrd3m9nfxs5dd3ij3k";
2019-07-03 13:58:15 +02:00
};
2020-09-24 22:18:25 +02:00
cargoSha256 = "1vngn9gbiv59wrq230qk2mv00bsbdfk2mi1iqpr736c5wj1caqld";
2019-07-03 13:58:15 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security libiconv curl ];
2019-11-18 20:53:47 +01:00
preCheck = ''
export HOME=$(mktemp -d) USER=nixbld
git config --global user.name Nixbld
git config --global user.email nixbld@localhost.localnet
'';
2019-07-03 13:58:15 +02:00
meta = with lib; {
2019-07-03 13:58:15 +02:00
description = "cargo, make me a project";
homepage = "https://github.com/ashleygwilliams/cargo-generate";
2019-07-03 13:58:15 +02:00
license = licenses.asl20;
maintainers = [ maintainers.turbomack ];
};
}