mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
fix mpich2 and mplayer
This commit is contained in:
parent
0b112cb489
commit
471a9615a2
@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ freetype zlib pkgconfig ]
|
[ freetype zlib pkgconfig ]
|
||||||
++ stdenv.lib.optional x11Support [ libX11 libXext mesa ]
|
++ stdenv.lib.optionals x11Support [ libX11 libXext mesa ]
|
||||||
++ stdenv.lib.optional alsaSupport alsaLib
|
++ stdenv.lib.optional alsaSupport alsaLib
|
||||||
++ stdenv.lib.optional xvSupport libXv
|
++ stdenv.lib.optional xvSupport libXv
|
||||||
++ stdenv.lib.optional theoraSupport libtheora
|
++ stdenv.lib.optional theoraSupport libtheora
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
configureFlags = "--enable-shared --enable-sharedlib";
|
configureFlags = "--enable-shared --enable-sharedlib";
|
||||||
|
|
||||||
buildInputs = [ python perl gfortran ];
|
buildInputs = [ python perl gfortran ];
|
||||||
propagatedBuildInputs = stdenv.lib.optional (stdenv ? glibc) [ stdenv.glibc ];
|
propagatedBuildInputs = stdenv.lib.optional (stdenv ? glibc) stdenv.glibc;
|
||||||
|
|
||||||
patchPhase =
|
patchPhase =
|
||||||
'' for i in $(find -type f -not -name Makefile.\*)
|
'' for i in $(find -type f -not -name Makefile.\*)
|
||||||
|
Loading…
Reference in New Issue
Block a user