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

81 lines
1.3 KiB
Nix
Raw Normal View History

{ asciidoc
, cmocka
, docbook_xsl
, fetchFromGitHub
, fontconfig
, freeimage
, icu
, libGLU
, libheif
, libjpeg_turbo
, libpng
, librsvg
, libtiff
, libxkbcommon
, libxslt
, netsurf
, pango
, pkgconfig
, stdenv
, wayland
, meson
, ninja
, inih
2018-09-03 12:22:32 +00:00
}:
2015-11-12 18:40:00 +00:00
stdenv.mkDerivation rec {
pname = "imv";
version = "4.2.0";
2015-11-12 18:40:00 +00:00
2018-09-03 12:22:32 +00:00
src = fetchFromGitHub {
owner = "eXeC64";
repo = "imv";
rev = "v${version}";
sha256 = "07pcpppmfvvj0czfvp1cyq03ha0jdj4whl13lzvw37q3vpxs5qqh";
2015-11-12 18:40:00 +00:00
};
nativeBuildInputs = [
asciidoc
cmocka
docbook_xsl
libxslt
meson
ninja
];
2019-09-06 08:01:47 +00:00
2018-09-03 12:22:32 +00:00
buildInputs = [
2019-09-06 08:01:47 +00:00
freeimage
icu
2019-09-06 08:01:47 +00:00
libGLU
libjpeg_turbo
2019-09-06 08:01:47 +00:00
librsvg
libxkbcommon
netsurf.libnsgif
2019-09-06 08:01:47 +00:00
pango
pkgconfig
wayland
inih
libtiff
libheif
libpng
2018-09-03 12:22:32 +00:00
];
2015-11-12 18:40:00 +00:00
2019-09-06 08:01:47 +00:00
postFixup = ''
# The `bin/imv` script assumes imv-wayland or imv-x11 in PATH,
# so we have to fix those to the binaries we installed into the /nix/store
sed -i "s|\bimv-wayland\b|$out/bin/imv-wayland|" $out/bin/imv
sed -i "s|\bimv-x11\b|$out/bin/imv-x11|" $out/bin/imv
'';
2019-07-19 06:40:54 +00:00
doCheck = true;
2015-11-12 18:40:00 +00:00
meta = with stdenv.lib; {
description = "A command line image viewer for tiling window managers";
homepage = "https://github.com/eXeC64/imv";
license = licenses.gpl2;
2019-07-19 06:40:54 +00:00
maintainers = with maintainers; [ rnhmjoj markus1189 ];
platforms = platforms.all;
2015-11-12 18:40:00 +00:00
};
}