2017-07-03 13:16:20 +01:00
|
|
|
{ stdenv, fetchFromGitHub, libX11, imlib2, giflib, libexif, conf ? null }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2013-05-24 09:21:34 +01:00
|
|
|
|
2016-01-03 20:36:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sxiv-${version}";
|
2017-05-14 13:40:11 +01:00
|
|
|
version = "1.3.2";
|
|
|
|
|
2016-01-03 20:36:47 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "muennich";
|
|
|
|
repo = "sxiv";
|
2017-05-14 13:40:11 +01:00
|
|
|
rev = "v${version}";
|
2016-01-03 20:36:47 +00:00
|
|
|
sha256 = "1f4gz1qjhb44bbb3q5fqk439zyipkwnr19zhg89yq2pgmzzzqr2h";
|
2013-05-24 09:21:34 +01:00
|
|
|
};
|
|
|
|
|
2014-11-03 23:01:03 +00:00
|
|
|
postUnpack = ''
|
|
|
|
substituteInPlace $sourceRoot/Makefile \
|
|
|
|
--replace /usr/local $out
|
|
|
|
'';
|
2013-05-24 09:21:34 +01:00
|
|
|
|
2017-07-03 13:16:20 +01:00
|
|
|
configFile = optionalString (conf!=null) (builtins.toFile "config.def.h" conf);
|
|
|
|
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
|
|
|
|
|
2014-11-03 23:01:03 +00:00
|
|
|
buildInputs = [ libX11 imlib2 giflib libexif ];
|
2017-07-03 13:16:20 +01:00
|
|
|
|
2013-05-24 09:21:34 +01:00
|
|
|
meta = {
|
|
|
|
description = "Simple X Image Viewer";
|
|
|
|
homepage = "https://github.com/muennich/sxiv";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-05-24 09:21:34 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-07-03 13:16:20 +01:00
|
|
|
maintainers = with maintainers; [ jfrankenau fuuzetsu ];
|
2013-05-24 09:21:34 +01:00
|
|
|
};
|
|
|
|
}
|