mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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" ```
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, pkg-config
|
|
, rustPlatform
|
|
, stdenv
|
|
, withSixel ? false
|
|
, libsixel
|
|
, xorg
|
|
, AppKit
|
|
, withSki ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "menyoki";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-owP3G1Rygraifdc4iPURQ1Es0msNhYZIlfrtj0CSU6Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-NtXjlGkX8AzSw98xHPymzdnTipMIunyDbpSr4eVowa0=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ]
|
|
++ lib.optional stdenv.hostPlatform.isLinux pkg-config;
|
|
|
|
buildInputs = lib.optional withSixel libsixel
|
|
++ lib.optionals stdenv.hostPlatform.isLinux (with xorg; [ libX11 libXrandr ])
|
|
++ lib.optional stdenv.hostPlatform.isDarwin AppKit;
|
|
|
|
buildNoDefaultFeatures = !withSki;
|
|
buildFeatures = lib.optional withSixel "sixel";
|
|
|
|
checkFlags = [
|
|
# sometimes fails on lower end machines
|
|
"--skip=record::fps::tests::test_fps"
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage man/*
|
|
installShellCompletion completions/menyoki.{bash,fish,zsh}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Screen{shot,cast} and perform ImageOps on the command line";
|
|
homepage = "https://menyoki.cli.rs/";
|
|
changelog = "https://github.com/orhun/menyoki/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "menyoki";
|
|
};
|
|
}
|