
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, installShellFiles
|
|
, pkg-config
|
|
, perl
|
|
, openssl
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "release-plz";
|
|
version = "0.3.79";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MarcoIeni";
|
|
repo = "release-plz";
|
|
rev = "release-plz-v${version}";
|
|
hash = "sha256-tI9/FtGxjKPIFg6L7pNeSx24G3FcfwOlIqcuF6wCTSU=";
|
|
};
|
|
|
|
cargoHash = "sha256-UN3SkNNY8ovaT/eNb9JyF9KQWt8KG0TX9ztLjrAnPPo=";
|
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config perl ];
|
|
buildInputs = [ openssl ];
|
|
|
|
buildAndTestSubdir = "crates/release_plz";
|
|
|
|
# Tests depend on additional infrastructure to be running locally
|
|
doCheck = false;
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd ${meta.mainProgram} \
|
|
--bash <($out/bin/${meta.mainProgram} generate-completions bash) \
|
|
--fish <($out/bin/${meta.mainProgram} generate-completions fish) \
|
|
--zsh <($out/bin/${meta.mainProgram} generate-completions zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Publish Rust crates from CI with a Release PR";
|
|
homepage = "https://release-plz.ieni.dev";
|
|
license = with lib.licenses; [ asl20 mit ];
|
|
maintainers = with lib.maintainers; [ dannixon ];
|
|
mainProgram = "release-plz";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|