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

51 lines
1.6 KiB
Nix
Raw Normal View History

2016-03-04 09:35:08 +01:00
{ stdenv, pkgs, fetchurl, fetchFromGitHub, pkgconfig, libconfig,
gtkmm2, glibmm, libxml2, libsecret, curl, unrar, libzip,
2016-03-04 09:35:08 +01:00
librsvg, gst_all_1, autoreconfHook, makeWrapper }:
2017-03-18 22:42:47 +01:00
stdenv.mkDerivation rec {
name = "ahoviewer-${version}";
2018-03-22 21:49:15 +01:00
version = "1.5.0";
2017-03-18 22:42:47 +01:00
2016-03-04 09:35:08 +01:00
src = fetchFromGitHub {
owner = "ahodesuka";
repo = "ahoviewer";
2017-03-18 22:42:47 +01:00
rev = version;
2018-03-22 21:49:15 +01:00
sha256 = "1adzxp30fwh41y339ha8i5qp89zf21dw18vcicqqnzvyxbk5r3ig";
2016-03-04 09:35:08 +01:00
};
2017-03-18 22:42:47 +01:00
2016-03-04 09:35:08 +01:00
enableParallelBuilding = true;
2017-03-18 22:42:47 +01:00
2016-03-04 09:35:08 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
buildInputs = [ glibmm libconfig gtkmm2 glibmm libxml2
2016-03-04 09:35:08 +01:00
libsecret curl unrar libzip librsvg
gst_all_1.gstreamer
gst_all_1.gst-plugins-good
gst_all_1.gst-libav
gst_all_1.gst-plugins-base ];
2018-03-22 21:49:15 +01:00
# https://github.com/ahodesuka/ahoviewer/issues/60
# Already fixed in the master branch
# TODO: remove this next release
makeFlags = [ ''LIBS=-lssl -lcrypto'' ];
2017-03-18 22:42:47 +01:00
2016-03-04 09:35:08 +01:00
postPatch = ''patchShebangs version.sh'';
2017-03-18 22:42:47 +01:00
2016-03-04 09:35:08 +01: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 22:42:47 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/ahodesuka/ahoviewer;
2016-03-04 09:35:08 +01:00
description = "A GTK2 image viewer, manga reader, and booru browser";
maintainers = with maintainers; [ skrzyp xzfc ];
2017-03-18 22:42:47 +01:00
license = licenses.mit;
# Unintentionally not working on Darwin:
# https://github.com/ahodesuka/ahoviewer/issues/62
platforms = platforms.linux;
2016-03-04 09:35:08 +01:00
};
}