mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01: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.6 KiB
Nix
82 lines
1.6 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, openssl
|
|
, fontconfig
|
|
, nasm
|
|
, libX11
|
|
, libXcursor
|
|
, libXrandr
|
|
, libXi
|
|
, libGL
|
|
, libxkbcommon
|
|
, wayland
|
|
, stdenv
|
|
, gtk3
|
|
, darwin
|
|
, perl
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "oculante";
|
|
version = "0.8.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "woelper";
|
|
repo = "oculante";
|
|
rev = version;
|
|
hash = "sha256-Dg1FFB9WVB4SWInSyOYb1TCPAtCa9gwsFLUX+UhL4DY=";
|
|
};
|
|
|
|
cargoHash = "sha256-Ze3ACs9WyoxNsaeJlZWhR0g+aFsntwNLLYbw2RnmwfE=";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
nasm
|
|
perl
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
fontconfig
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
libGL
|
|
libX11
|
|
libXcursor
|
|
libXi
|
|
libXrandr
|
|
gtk3
|
|
|
|
libxkbcommon
|
|
wayland
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.libobjc
|
|
];
|
|
|
|
checkFlags = [
|
|
"--skip=bench"
|
|
"--skip=tests::net" # requires network access
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 $src/res/oculante.png -t $out/share/icons/hicolor/128x128/apps/
|
|
install -Dm444 $src/res/oculante.desktop -t $out/share/applications
|
|
wrapProgram $out/bin/oculante \
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [libGL]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Minimalistic crossplatform image viewer written in Rust";
|
|
homepage = "https://github.com/woelper/oculante";
|
|
changelog = "https://github.com/woelper/oculante/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
mainProgram = "oculante";
|
|
maintainers = with maintainers; [ dit7ya figsoda ];
|
|
};
|
|
}
|