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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ config, lib, stdenv, fetchFromGitHub, pkg-config, libconfig
, gtkmm2, glibmm, libxml2, libsecret, curl, libzip
, librsvg, gst_all_1, autoreconfHook, makeWrapper
, useUnrar ? config.ahoviewer.useUnrar or false, unrar
2018-03-25 07:33:41 +00:00
}:
assert useUnrar -> unrar != null;
2017-03-18 21:42:47 +00:00
stdenv.mkDerivation rec {
pname = "ahoviewer";
version = "1.6.5";
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 = "1avdl4qcpznvf3s2id5qi1vnzy4wgh6vxpnrz777a1s4iydxpcd8";
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;
nativeBuildInputs = [ autoreconfHook pkg-config 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
2021-01-15 13:21:58 +00:00
] ++ lib.optional useUnrar unrar;
2018-03-22 20:49:15 +00:00
2019-10-30 00:40:49 +00:00
NIX_LDFLAGS = "-lpthread";
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 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
};
}