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

35 lines
898 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, libXft, imlib2, giflib, libexif, conf ? null }:
2017-07-03 12:16:20 +00:00
2021-01-15 13:21:58 +00:00
with lib;
2013-05-24 08:21:34 +00:00
2016-01-03 20:36:47 +00:00
stdenv.mkDerivation rec {
2019-01-26 20:49:59 +00:00
pname = "sxiv";
2020-01-16 15:02:53 +00:00
version = "26";
2016-01-03 20:36:47 +00:00
src = fetchFromGitHub {
owner = "muennich";
2019-01-26 20:49:59 +00:00
repo = pname;
rev = "v${version}";
2020-01-16 15:02:53 +00:00
sha256 = "0xaawlfdy7b277m38mgg4423kd7p1ffn0dq4hciqs6ivbb3q9c4f";
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";
2018-02-24 10:27:26 +00:00
buildInputs = [ libXft imlib2 giflib libexif ];
2017-07-03 12:16:20 +00:00
2020-01-16 15:02:53 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
postInstall = ''
2020-01-16 15:02:53 +00:00
install -Dt $out/share/applications sxiv.desktop
'';
2013-05-24 08:21:34 +00:00
meta = {
description = "Simple X Image Viewer";
homepage = "https://github.com/muennich/sxiv";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with maintainers; [ jfrankenau ];
2013-05-24 08:21:34 +00:00
};
}