biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / graphics / qiv / default.nix
blob2758148dc1ae3abbb69fdd8cce0f07b4f25a75c9
1 { lib, stdenv, fetchurl, pkg-config, gtk2, imlib2, file, lcms2, libexif } :
3 stdenv.mkDerivation (rec {
4   version = "2.3.3";
5   pname = "qiv";
7   src = fetchurl {
8     url = "https://spiegl.de/qiv/download/${pname}-${version}.tgz";
9     sha256 = "sha256-7whf/eLUiwWzZlk55a4eNZ06OBAI+4J2hPfW/UxTNwQ=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ gtk2 imlib2 file lcms2 libexif ];
15   preBuild=''
16     substituteInPlace Makefile --replace /usr/local "$out"
17     substituteInPlace Makefile --replace /man/ /share/man/
18     substituteInPlace Makefile --replace /share/share/ /share/
19   '';
21   meta = with lib; {
22     description = "Quick image viewer";
23     homepage = "http://spiegl.de/qiv/";
24     license = licenses.gpl2;
25     platforms = platforms.linux;
26     mainProgram = "qiv";
27   };