mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
109 lines
1.8 KiB
Nix
109 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, brasero
|
|
, colord
|
|
, exiv2
|
|
, libheif
|
|
, libjpeg
|
|
, libjxl
|
|
, libtiff
|
|
, gst_all_1
|
|
, libraw
|
|
, libsecret
|
|
, glib
|
|
, gtk3
|
|
, gsettings-desktop-schemas
|
|
, librsvg
|
|
, libwebp
|
|
, libX11
|
|
, lcms2
|
|
, bison
|
|
, flex
|
|
, wrapGAppsHook3
|
|
, shared-mime-info
|
|
, python3
|
|
, desktop-file-utils
|
|
, itstool
|
|
, xapp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pix";
|
|
version = "3.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-WL9EW7oKeQwufw1VYDigbqAt52GQTpc5RgDEmnKO6vc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
desktop-file-utils
|
|
flex
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
brasero
|
|
colord
|
|
exiv2
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gst_all_1.gst-plugins-base
|
|
(gst_all_1.gst-plugins-good.override { gtkSupport = true; })
|
|
gst_all_1.gst-libav
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly
|
|
gtk3
|
|
lcms2
|
|
libheif
|
|
libjpeg
|
|
libjxl
|
|
libraw
|
|
librsvg
|
|
libsecret
|
|
libtiff
|
|
libwebp
|
|
libX11
|
|
xapp
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x pix/make-pix-h.py
|
|
|
|
patchShebangs data/gschemas/make-enums.py \
|
|
pix/make-pix-h.py \
|
|
po/make-potfiles-in.py \
|
|
postinstall.py \
|
|
pix/make-authors-tab.py
|
|
'';
|
|
|
|
# Avoid direct dependency on webkit2gtk-4.0
|
|
# https://fedoraproject.org/wiki/Changes/Remove_webkit2gtk-4.0_API_Version
|
|
mesonFlags = [ "-Dwebservices=false" ];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Generic image viewer from Linux Mint";
|
|
mainProgram = "pix";
|
|
homepage = "https://github.com/linuxmint/pix";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|