handbrake: disable unfree faac, as it doesn't build with it
This commit is contained in:
parent
d93b1f80c0
commit
48458b1c96
@ -31,7 +31,8 @@ stdenv.mkDerivation rec {
|
|||||||
version = "0.9.9";
|
version = "0.9.9";
|
||||||
name = "handbrake-${version}";
|
name = "handbrake-${version}";
|
||||||
|
|
||||||
allowUnfree = config.allowUnfree or false;
|
# ToDo: doesn't work (yet)
|
||||||
|
allowUnfree = false; # config.allowUnfree or false;
|
||||||
|
|
||||||
buildInputsX = stdenv.lib.optionals useGtk [
|
buildInputsX = stdenv.lib.optionals useGtk [
|
||||||
glib gtk intltool libnotify
|
glib gtk intltool libnotify
|
||||||
@ -39,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
] ++ stdenv.lib.optionals useWebKitGtk [ webkitgtk ];
|
] ++ stdenv.lib.optionals useWebKitGtk [ webkitgtk ];
|
||||||
|
|
||||||
# Did not test compiling with it
|
# Did not test compiling with it
|
||||||
unfreeInputs = stdenv.lib.optionals allowUnfree [ faac ];
|
unfreeInputs = stdenv.lib.optional allowUnfree faac;
|
||||||
|
|
||||||
nativeBuildInputs = [ python pkgconfig yasm autoconf automake libtool m4 ];
|
nativeBuildInputs = [ python pkgconfig yasm autoconf automake libtool m4 ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -56,7 +57,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1crmm1c32vx60jfl2bqzg59q4qqx6m83b08snp7h1njc21sdf7d7";
|
sha256 = "1crmm1c32vx60jfl2bqzg59q4qqx6m83b08snp7h1njc21sdf7d7";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = stdenv.lib.optionals (! allowUnfree) [ ./disable-unfree.patch ];
|
patches = stdenv.lib.optional (! allowUnfree) ./disable-unfree.patch;
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
# Fake wget to prevent downloads
|
# Fake wget to prevent downloads
|
||||||
|
Loading…
x
Reference in New Issue
Block a user