1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/applications/graphics/sxiv/default.nix

34 lines
910 B
Nix
Raw Normal View History

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}";
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 09:21:34 +01: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";
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";
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
};
}