mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +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" ```
82 lines
1.8 KiB
Nix
82 lines
1.8 KiB
Nix
{ lib
|
|
, blueprint-compiler
|
|
, cargo
|
|
, darwin
|
|
, desktop-file-utils
|
|
, fetchFromGitLab
|
|
, glib
|
|
, gtk4
|
|
, imagemagick
|
|
, libadwaita
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, rustPlatform
|
|
, rustc
|
|
, stdenv
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "switcheroo";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "adhami3310";
|
|
repo = "Switcheroo";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-AwecOA8HWGimhQyCEG3Z3hhwa9RVWssykUXsdvqqs9U=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
src = finalAttrs.src;
|
|
name = "switcheroo-${finalAttrs.version}";
|
|
hash = "sha256-fpI4ue30DhkeWAolyeots+LkaRyaIPhYmIqRmx08i2s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
blueprint-compiler
|
|
cargo
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.cargoSetupHook
|
|
rustc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Foundation
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PATH : "${lib.makeBinPath [ imagemagick ]}"
|
|
)
|
|
'';
|
|
|
|
# Workaround for the gettext-sys issue
|
|
# https://github.com/Koka/gettext-rs/issues/114
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString
|
|
(
|
|
stdenv.cc.isClang &&
|
|
lib.versionAtLeast stdenv.cc.version "16"
|
|
)
|
|
"-Wno-error=incompatible-function-pointer-types";
|
|
|
|
meta = with lib; {
|
|
changelog = "https://gitlab.com/adhami3310/Switcheroo/-/releases/v${finalAttrs.version}";
|
|
description = "App for converting images between different formats";
|
|
homepage = "https://apps.gnome.org/Converter/";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "switcheroo";
|
|
maintainers = with maintainers; [ michaelgrahamevans ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|