2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, imlib2, file, lcms2, libexif } :
|
2013-01-11 19:24:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation (rec {
|
2019-03-16 22:58:58 +00:00
|
|
|
version = "2.3.2";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qiv";
|
2013-01-11 19:24:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://spiegl.de/qiv/download/${pname}-${version}.tgz";
|
2019-03-16 22:58:58 +00:00
|
|
|
sha256 = "1mc0f2nnas4q0d7zc9r6g4z93i32xlx0p9hl4fn5zkyml24a1q28";
|
2013-01-11 19:24:20 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 imlib2 file lcms2 libexif ];
|
2013-01-11 19:24:20 +00:00
|
|
|
|
2013-01-21 19:03:53 +00:00
|
|
|
preBuild=''
|
|
|
|
substituteInPlace Makefile --replace /usr/local "$out"
|
|
|
|
substituteInPlace Makefile --replace /man/ /share/man/
|
2019-03-16 22:58:58 +00:00
|
|
|
substituteInPlace Makefile --replace /share/share/ /share/
|
2013-01-21 19:03:53 +00:00
|
|
|
'';
|
2013-01-11 19:24:20 +00:00
|
|
|
|
2018-08-22 22:58:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Quick image viewer";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://spiegl.de/qiv/";
|
2014-06-13 10:36:56 +01:00
|
|
|
inherit version;
|
2018-08-22 22:58:11 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2013-01-11 19:24:20 +00:00
|
|
|
};
|
|
|
|
})
|