nixpkgs/pkgs/applications/graphics/geeqie/default.nix

65 lines
2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, autoconf, automake, gettext, intltool
, gtk3, lcms2, exiv2, libchamplain, clutter-gtk, ffmpegthumbnailer, fbida
2019-06-27 06:32:50 +00:00
, wrapGAppsHook, fetchpatch
2014-11-01 20:52:22 +00:00
}:
stdenv.mkDerivation rec {
pname = "geeqie";
2020-10-17 13:27:52 +00:00
version = "1.5.1";
src = fetchurl {
url = "http://geeqie.org/${pname}-${version}.tar.xz";
2020-10-17 13:27:52 +00:00
sha256 = "02m1vqaasin249xx792cdj11xyag8lnanwzxd108y7y34g9xam28";
};
2019-06-27 06:32:50 +00:00
patches = [
# Do not build the changelog as this requires markdown.
2019-06-27 06:34:18 +00:00
(fetchpatch {
name = "geeqie-1.4-goodbye-changelog.patch";
url = "https://src.fedoraproject.org/rpms/geeqie/raw/132fb04a1a5e74ddb333d2474f7edb9a39dc8d27/f/geeqie-1.4-goodbye-changelog.patch";
sha256 = "00a35dds44kjjdqsbbfk0x9y82jspvsbpm2makcm1ivzlhjjgszn";
})
2019-06-27 06:32:50 +00:00
];
2018-02-24 10:49:39 +00:00
preConfigure = "./autogen.sh";
2014-11-01 20:52:22 +00:00
nativeBuildInputs = [ pkg-config autoconf automake gettext intltool
2019-05-27 18:30:15 +00:00
wrapGAppsHook
];
2020-10-17 13:27:52 +00:00
2014-11-01 20:52:22 +00:00
buildInputs = [
gtk3 lcms2 exiv2 libchamplain clutter-gtk ffmpegthumbnailer fbida
2014-11-01 20:52:22 +00:00
];
postInstall = ''
# Allow geeqie to find exiv2 and exiftran, necessary to
# losslessly rotate JPEG images.
sed -i $out/lib/geeqie/geeqie-rotate \
2021-01-15 13:21:58 +00:00
-e '1 a export PATH=${lib.makeBinPath [ exiv2 fbida ]}:$PATH'
2014-11-01 20:52:22 +00:00
'';
2018-02-24 10:49:39 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "Lightweight GTK based image viewer";
longDescription =
''
Geeqie is a lightweight GTK based image viewer for Unix like
operating systems. It features: EXIF, IPTC and XMP metadata
browsing and editing interoperability; easy integration with other
software; geeqie works on files and directories, there is no need to
import images; fast preview for many raw image formats; tools for
image comparison, sorting and managing photo collection. Geeqie was
initially based on GQview.
'';
license = licenses.gpl2Plus;
homepage = "http://geeqie.sourceforge.net";
2020-10-17 13:27:52 +00:00
maintainers = with maintainers; [ jfrankenau pSub markus1189 ];
platforms = platforms.gnu ++ platforms.linux;
};
}