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

39 lines
1020 B
Nix
Raw Normal View History

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