mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +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.
78 lines
1.6 KiB
Nix
78 lines
1.6 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, installShellFiles
|
|
, bzip2
|
|
, openssl
|
|
, xz
|
|
, zstd
|
|
, stdenv
|
|
, darwin
|
|
, testers
|
|
, espup
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "espup";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "esp-rs";
|
|
repo = "espup";
|
|
rev = "v${version}";
|
|
hash = "sha256-okB8K0ly3MvnkVve41eT0SNr5dPn5E5QXewqLHGL/Tc=";
|
|
};
|
|
|
|
cargoHash = "sha256-n2tLG3logtc73Ut/R1UGuLSm7MpZ4Bxp/08SOhGL+80=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
openssl
|
|
xz
|
|
zstd
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreFoundation
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
env = {
|
|
OPENSSL_NO_VENDOR = true;
|
|
ZSTD_SYS_USE_PKG_CONFIG = true;
|
|
};
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
checkFlags = [
|
|
# makes network calls
|
|
"--skip=toolchain::rust::tests::test_xtensa_rust_parse_version"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd espup \
|
|
--bash <($out/bin/espup completions bash) \
|
|
--fish <($out/bin/espup completions fish) \
|
|
--zsh <($out/bin/espup completions zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = espup;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool for installing and maintaining Espressif Rust ecosystem";
|
|
homepage = "https://github.com/esp-rs/espup/";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ knightpp beeb ];
|
|
mainProgram = "espup";
|
|
};
|
|
}
|