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

45 lines
1.4 KiB
Nix
Raw Normal View History

2016-03-04 08:35:08 +00:00
{ stdenv, pkgs, fetchurl, fetchFromGitHub, pkgconfig, libconfig,
gtkmm2, glibmm, libxml2, libsecret, curl, unrar, libzip,
2016-03-04 08:35:08 +00:00
librsvg, gst_all_1, autoreconfHook, makeWrapper }:
2017-03-18 21:42:47 +00:00
stdenv.mkDerivation rec {
name = "ahoviewer-${version}";
version = "1.4.9";
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;
sha256 = "194h3k5zvd8gjrbs91qba7d9h7i30yh4rjk4w3aa1vwvv0qm2amx";
2016-03-04 08:35:08 +00:00
};
2017-03-18 21:42:47 +00:00
2016-03-04 08:35:08 +00:00
enableParallelBuilding = true;
2017-03-18 21:42:47 +00:00
2016-03-04 08:35:08 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
buildInputs = [ glibmm libconfig gtkmm2 glibmm libxml2
2016-03-04 08:35:08 +00:00
libsecret curl unrar libzip librsvg
gst_all_1.gstreamer
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-libav
gst_all_1.gst-plugins-base ];
2017-03-18 21:42:47 +00:00
2016-03-04 08:35:08 +00:00
postPatch = ''patchShebangs version.sh'';
2017-03-18 21:42:47 +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;
platforms = platforms.allBut [ "darwin" "cygwin" ];
2016-03-04 08:35:08 +00:00
};
}