mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
078d0a0ffa
https://gitlab.gnome.org/GNOME/loupe/-/compare/45.beta.1...45.0 cargo and meson changes look okay. Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com> Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
94 lines
2.0 KiB
Nix
94 lines
2.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, fetchpatch2
|
|
, cargo
|
|
, desktop-file-utils
|
|
, itstool
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, jq
|
|
, moreutils
|
|
, rustc
|
|
, wrapGAppsHook4
|
|
, gtk4
|
|
, lcms2
|
|
, libadwaita
|
|
, libgweather
|
|
, glycin-loaders
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "loupe";
|
|
version = "45.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/loupe/${lib.versions.major version}/loupe-${version}.tar.xz";
|
|
hash = "sha256-TWSP47a/6lUpmGWW1qRQp205fx3wqNju3s8BBAYiFHE=";
|
|
};
|
|
|
|
patches = [
|
|
# Enable glycin sandbox
|
|
# https://gitlab.gnome.org/GNOME/loupe/-/issues/252
|
|
(fetchpatch2 {
|
|
url = "https://gitlab.gnome.org/GNOME/loupe/-/commit/aa2b4d59409c92ee402c6a86cb7c02f06854bb8d.patch";
|
|
hash = "sha256-zKvXrPeIDGbK0RXcZoMkf2FAk+Do099kY7pt6KhFMEs=";
|
|
})
|
|
|
|
# Fix paths in glycin library
|
|
glycin-loaders.passthru.glycinPathsPatch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
desktop-file-utils
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
jq
|
|
moreutils
|
|
rustc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
lcms2
|
|
libadwaita
|
|
libgweather
|
|
];
|
|
|
|
postPatch = ''
|
|
# Replace hash of file we patch in vendored glycin.
|
|
jq \
|
|
--arg hash "$(sha256sum vendor/glycin/src/dbus.rs | cut -d' ' -f 1)" \
|
|
'.files."src/dbus.rs" = $hash' \
|
|
vendor/glycin/.cargo-checksum.json \
|
|
| sponge vendor/glycin/.cargo-checksum.json
|
|
'';
|
|
|
|
preFixup = ''
|
|
# Needed for the glycin crate to find loaders.
|
|
# https://gitlab.gnome.org/sophie-h/glycin/-/blob/0.1.beta.2/glycin/src/config.rs#L44
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${glycin-loaders}/share"
|
|
)
|
|
'';
|
|
|
|
passthru.updateScript = gnome.updateScript {
|
|
packageName = "loupe";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/loupe";
|
|
description = "A simple image viewer application written with GTK4 and Rust";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ jk ] ++ teams.gnome.members;
|
|
platforms = platforms.unix;
|
|
mainProgram = "loupe";
|
|
};
|
|
}
|