mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
e0464e4788
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" ```
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv, testers, conceal }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "conceal";
|
|
version = "0.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TD-Sky";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-N/KlxtxzEDwUvQMpgf2S6u7MaYiF0eXnMrGoowc08J0=";
|
|
};
|
|
|
|
cargoHash = "sha256-50EHc8ZHzbl5IFpi5k3/Katc3FaxBgnpf8COrpPHZWk=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion \
|
|
completions/{cnc/cnc,conceal/conceal}.{bash,fish} \
|
|
--zsh completions/{cnc/_cnc,conceal/_conceal}
|
|
'';
|
|
|
|
# There are not any tests in source project.
|
|
doCheck = false;
|
|
|
|
passthru.tests = testers.testVersion {
|
|
package = conceal;
|
|
command = "conceal --version";
|
|
version = "conceal ${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Trash collector written in Rust";
|
|
homepage = "https://github.com/TD-Sky/conceal";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jedsek kashw2 ];
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|