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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, makeWrapper
2017-03-18 23:10:44 +00:00
, xorg, imlib2, libjpeg, libpng
, curl, libexif, jpegexiforient, perl
, enableAutoreload ? !stdenv.hostPlatform.isDarwin }:
stdenv.mkDerivation rec {
pname = "feh";
2022-01-07 22:29:03 +00:00
version = "3.8";
src = fetchurl {
url = "https://feh.finalrewind.org/${pname}-${version}.tar.bz2";
2022-01-07 22:29:03 +00:00
sha256 = "1a9bsq5j9sl2drzkab0hdhnamalpaszw9mz2prz6scrr5dak8g3z";
};
2017-06-17 18:06:20 +01:00
outputs = [ "out" "man" "doc" ];
2018-08-08 19:19:23 +01:00
nativeBuildInputs = [ makeWrapper xorg.libXt ];
2016-09-09 14:04:36 +01:00
buildInputs = [ xorg.libX11 xorg.libXinerama imlib2 libjpeg libpng curl libexif ];
2018-03-04 14:17:12 +00:00
makeFlags = [
"PREFIX=${placeholder "out"}" "exif=1"
2022-01-28 14:23:25 +00:00
] ++ lib.optional stdenv.isDarwin "verscmp=0"
++ lib.optional enableAutoreload "inotify=1";
2017-06-17 18:06:20 +01:00
installTargets = [ "install" ];
postInstall = ''
2022-01-28 14:23:25 +00:00
wrapProgram "$out/bin/feh" --prefix PATH : "${lib.makeBinPath [ libjpeg jpegexiforient ]}" \
2017-06-17 18:06:20 +01:00
--add-flags '--theme=feh'
'';
checkInputs = lib.singleton (perl.withPackages (p: [ p.TestCommand ]));
2016-05-31 12:48:40 +01:00
doCheck = true;
2022-01-28 14:23:25 +00:00
meta = with lib; {
description = "A light-weight image viewer";
2017-09-10 20:25:26 +01:00
homepage = "https://feh.finalrewind.org/";
2022-01-28 14:23:25 +00:00
# released under a variant of the MIT license
# https://spdx.org/licenses/MIT-feh.html
license = licenses.mit-feh;
maintainers = with maintainers; [ viric willibutz globin ma27 ];
2017-03-18 23:10:44 +00:00
platforms = platforms.unix;
};
}