ahoviewer: add useUnrar option
This commit is contained in:
parent
fa4956d091
commit
c276b45476
@ -1,6 +1,10 @@
|
|||||||
{ stdenv, pkgs, fetchurl, fetchFromGitHub, pkgconfig, libconfig,
|
{ stdenv, pkgs, fetchurl, fetchFromGitHub, pkgconfig, libconfig,
|
||||||
gtkmm2, glibmm, libxml2, libsecret, curl, unrar, libzip,
|
gtkmm2, glibmm, libxml2, libsecret, curl, libzip,
|
||||||
librsvg, gst_all_1, autoreconfHook, makeWrapper }:
|
librsvg, gst_all_1, autoreconfHook, makeWrapper,
|
||||||
|
useUnrar ? false, unrar
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert useUnrar -> unrar != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ahoviewer-${version}";
|
name = "ahoviewer-${version}";
|
||||||
@ -13,23 +17,25 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1adzxp30fwh41y339ha8i5qp89zf21dw18vcicqqnzvyxbk5r3ig";
|
sha256 = "1adzxp30fwh41y339ha8i5qp89zf21dw18vcicqqnzvyxbk5r3ig";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];
|
||||||
buildInputs = [ glibmm libconfig gtkmm2 glibmm libxml2
|
buildInputs = [
|
||||||
libsecret curl unrar libzip librsvg
|
glibmm libconfig gtkmm2 glibmm libxml2
|
||||||
gst_all_1.gstreamer
|
libsecret curl libzip librsvg
|
||||||
gst_all_1.gst-plugins-good
|
gst_all_1.gstreamer
|
||||||
gst_all_1.gst-libav
|
gst_all_1.gst-plugins-good
|
||||||
gst_all_1.gst-plugins-base ];
|
gst_all_1.gst-libav
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
] ++ stdenv.lib.optional useUnrar unrar;
|
||||||
|
|
||||||
# https://github.com/ahodesuka/ahoviewer/issues/60
|
# https://github.com/ahodesuka/ahoviewer/issues/60
|
||||||
# Already fixed in the master branch
|
# Already fixed in the master branch
|
||||||
# TODO: remove this next release
|
# TODO: remove this next release
|
||||||
makeFlags = [ ''LIBS=-lssl -lcrypto'' ];
|
makeFlags = [ ''LIBS=-lssl -lcrypto'' ];
|
||||||
|
|
||||||
postPatch = ''patchShebangs version.sh'';
|
postPatch = ''patchShebangs version.sh'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/ahoviewer \
|
wrapProgram $out/bin/ahoviewer \
|
||||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
|
||||||
|
@ -14644,7 +14644,9 @@ with pkgs;
|
|||||||
stdenv = overrideCC stdenv gcc49;
|
stdenv = overrideCC stdenv gcc49;
|
||||||
};
|
};
|
||||||
|
|
||||||
ahoviewer = callPackage ../applications/graphics/ahoviewer { };
|
ahoviewer = callPackage ../applications/graphics/ahoviewer {
|
||||||
|
useUnrar = config.ahoviewer.useUnrar or false;
|
||||||
|
};
|
||||||
|
|
||||||
airwave = callPackage ../applications/audio/airwave/default.nix { };
|
airwave = callPackage ../applications/audio/airwave/default.nix { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user