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

52 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, libconfig,
2018-03-25 07:33:41 +00:00
gtkmm2, glibmm, libxml2, libsecret, curl, libzip,
librsvg, gst_all_1, autoreconfHook, makeWrapper,
useUnrar ? false, unrar
}:
assert useUnrar -> unrar != null;
2017-03-18 21:42:47 +00:00
stdenv.mkDerivation rec {
name = "ahoviewer-${version}";
2018-10-29 11:00:34 +00:00
version = "1.6.4";
2017-03-18 21:42:47 +00:00
2016-03-04 08:35:08 +00:00
src = fetchFromGitHub {
owner = "ahodesuka";
repo = "ahoviewer";
2017-03-18 21:42:47 +00:00
rev = version;
2018-10-29 11:00:34 +00:00
sha256 = "144jmk8w7dnmqy4w81b3kzama7i97chx16pgax2facn72a92921q";
2016-03-04 08:35:08 +00:00
};
2017-03-18 21:42:47 +00:00
2018-03-25 07:33:41 +00:00
enableParallelBuilding = true;
2016-03-04 08:35:08 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
2018-03-25 07:33:41 +00:00
buildInputs = [
glibmm libconfig gtkmm2 glibmm libxml2
libsecret curl libzip librsvg
gst_all_1.gstreamer
gst_all_1.gst-plugins-good
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
] ++ stdenv.lib.optional useUnrar unrar;
2018-03-22 20:49:15 +00:00
2016-03-04 08:35:08 +00:00
postPatch = ''patchShebangs version.sh'';
2018-03-25 07:33:41 +00:00
2016-03-04 08:35:08 +00:00
postInstall = ''
wrapProgram $out/bin/ahoviewer \
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
'';
2017-03-18 21:42:47 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/ahodesuka/ahoviewer;
2016-03-04 08:35:08 +00:00
description = "A GTK2 image viewer, manga reader, and booru browser";
maintainers = with maintainers; [ skrzyp xzfc ];
2017-03-18 21:42:47 +00:00
license = licenses.mit;
# Unintentionally not working on Darwin:
# https://github.com/ahodesuka/ahoviewer/issues/62
platforms = platforms.linux;
2016-03-04 08:35:08 +00:00
};
}