mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +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" ```
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, gpgme
|
|
, libgpg-error
|
|
, pkg-config
|
|
, python3
|
|
, AppKit
|
|
, Foundation
|
|
, libiconv
|
|
, libobjc
|
|
, libresolv
|
|
, x11Support ? true, libxcb, libxkbcommon
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gpg-tui";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = "gpg-tui";
|
|
rev = "v${version}";
|
|
hash = "sha256-aHmLcWiDy5GMbcKi285tfBggNmGkpVAoZMm4dt8LKak=";
|
|
};
|
|
|
|
cargoHash = "sha256-rtBvo2nX4A6K/TBl6xhW8huLXdR6xDUhzMB3KRXRYMs=";
|
|
|
|
nativeBuildInputs = [
|
|
gpgme # for gpgme-config
|
|
libgpg-error # for gpg-error-config
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
gpgme
|
|
libgpg-error
|
|
] ++ lib.optionals x11Support [
|
|
libxcb
|
|
libxkbcommon
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
AppKit
|
|
Foundation
|
|
libiconv
|
|
libobjc
|
|
libresolv
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal user interface for GnuPG";
|
|
homepage = "https://github.com/orhun/gpg-tui";
|
|
changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda matthiasbeyer ];
|
|
mainProgram = "gpg-tui";
|
|
};
|
|
}
|