mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +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" ```
64 lines
2.0 KiB
Nix
64 lines
2.0 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromSourcehut
|
|
, stdenv
|
|
, pkg-config
|
|
, darwin
|
|
, installShellFiles
|
|
, installShellCompletions ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
|
|
, installManPages ? stdenv.buildPlatform.canExecute stdenv.hostPlatform
|
|
, notmuch
|
|
, buildNoDefaultFeatures ? false
|
|
, buildFeatures ? []
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
# Learn more about available cargo features at:
|
|
# - <https://pimalaya.org/neverest/cli/latest/installation.html#cargo>
|
|
# - <https://git.sr.ht/~soywod/neverest-cli/tree/master/item/Cargo.toml#L18>
|
|
inherit buildNoDefaultFeatures buildFeatures;
|
|
|
|
pname = "neverest";
|
|
version = "1.0.0-beta";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~soywod";
|
|
repo = "neverest-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-3PSJyhxrOCiuHUeVHO77+NecnI5fN5EZfPhYizuYvtE=";
|
|
};
|
|
|
|
cargoHash = "sha256-i5or8oBtjGqOfTfwB7dYXn/OPgr5WEWNEvC0WdCCG+c=";
|
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
++ lib.optional (installManPages || installShellCompletions) installShellFiles;
|
|
|
|
buildInputs = [ ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Cocoa Security ])
|
|
++ lib.optional (builtins.elem "notmuch" buildFeatures) notmuch;
|
|
|
|
# TODO: unit tests temporarily broken, remove this line for the next
|
|
# beta.2 release
|
|
doCheck = false;
|
|
|
|
postInstall = lib.optionalString installManPages ''
|
|
mkdir -p $out/man
|
|
$out/bin/neverest man $out/man
|
|
installManPage $out/man/*
|
|
'' + lib.optionalString installShellCompletions ''
|
|
installShellCompletion --cmd neverest \
|
|
--bash <($out/bin/neverest completion bash) \
|
|
--fish <($out/bin/neverest completion fish) \
|
|
--zsh <($out/bin/neverest completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CLI to synchronize, backup and restore emails";
|
|
mainProgram = "neverest";
|
|
homepage = "https://pimalaya.org/neverest/cli/v${version}/";
|
|
changelog = "https://git.sr.ht/~soywod/neverest-cli/tree/v${version}/item/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ soywod ];
|
|
};
|
|
}
|