mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
69 lines
2.2 KiB
Nix
69 lines
2.2 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libgit2
|
|
, openssl
|
|
, stdenv
|
|
, darwin
|
|
, git
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-generate";
|
|
version = "0.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cargo-generate";
|
|
repo = "cargo-generate";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-oiXv6MbQpmWFi2cTN3a1Zx7Bjr0Y+f6/O+0FQNidbBg=";
|
|
};
|
|
|
|
cargoHash = "sha256-8yLGxydU7jjoG13I+h7qjtabcCxzjnEiE8tAbH56pp4=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libgit2 openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
nativeCheckInputs = [ git ];
|
|
|
|
# disable vendored libgit2 and openssl
|
|
buildNoDefaultFeatures = true;
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d) USER=nixbld
|
|
git config --global user.name Nixbld
|
|
git config --global user.email nixbld@localhost.localnet
|
|
'';
|
|
|
|
# Exclude some tests that don't work in sandbox:
|
|
# - favorites_default_to_git_if_not_defined: requires network access to github.com
|
|
# - should_canonicalize: the test assumes that it will be called from the /Users/<project_dir>/ folder on darwin variant.
|
|
checkFlags = [
|
|
"--skip=favorites::favorites_default_to_git_if_not_defined"
|
|
"--skip=git_instead_of::should_read_the_instead_of_config_and_rewrite_an_git_at_url_to_https"
|
|
"--skip=git_instead_of::should_read_the_instead_of_config_and_rewrite_an_ssh_url_to_https"
|
|
"--skip=git_over_ssh::it_should_retrieve_the_private_key_from_ssh_agent"
|
|
"--skip=git_over_ssh::it_should_support_a_public_repo"
|
|
"--skip=git_over_ssh::it_should_use_a_ssh_key_provided_by_identity_argument"
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"--skip=git::utils::should_canonicalize"
|
|
];
|
|
|
|
env = {
|
|
LIBGIT2_NO_VENDOR = 1;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool to generate a new Rust project by leveraging a pre-existing git repository as a template";
|
|
mainProgram = "cargo-generate";
|
|
homepage = "https://github.com/cargo-generate/cargo-generate";
|
|
changelog = "https://github.com/cargo-generate/cargo-generate/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ figsoda turbomack matthiasbeyer ];
|
|
};
|
|
}
|