Fix some more Hydra evaluation errors

This commit is contained in:
Eelco Dolstra 2013-10-08 11:05:19 +02:00
parent 446c6daccd
commit df0d362f31
9 changed files with 12 additions and 9 deletions

View File

@ -39,5 +39,6 @@ pythonPackages.buildPythonPackage rec {
local hard drive. local hard drive.
''; '';
maintainers = [ stdenv.lib.maintainers.rickynils ]; maintainers = [ stdenv.lib.maintainers.rickynils ];
platforms = [];
}; };
} }

View File

@ -34,5 +34,6 @@ buildPythonPackage {
meta = { meta = {
homepage = "http://code.google.com/p/jbrout"; homepage = "http://code.google.com/p/jbrout";
description = "jBrout is a photo manager"; description = "jBrout is a photo manager";
platforms = stdenv.lib.platforms.linux;
}; };
} }

View File

@ -35,5 +35,6 @@ buildPythonPackage rec {
homepage = http://inotool.org/; homepage = http://inotool.org/;
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ antono the-kenny ]; maintainers = with stdenv.lib.maintainers; [ antono the-kenny ];
platforms = stdenv.lib.platforms.linux;
}; };
} }

View File

@ -9,6 +9,6 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/AccelerateHS/accelerate-fft"; homepage = "https://github.com/AccelerateHS/accelerate-fft";
description = "FFT using the Accelerate library"; description = "FFT using the Accelerate library";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.stdenv.lib.platforms.linux;
}; };
}) })

View File

@ -10,6 +10,6 @@ cabal.mkDerivation (self: {
homepage = "http://github.com/robeverest/cufft"; homepage = "http://github.com/robeverest/cufft";
description = "Haskell bindings for the CUFFT library"; description = "Haskell bindings for the CUFFT library";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.stdenv.lib.platforms.linux;
}; };
}) })

View File

@ -56,7 +56,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "V8 is Google's open source JavaScript engine"; description = "V8 is Google's open source JavaScript engine";
platforms = platforms.unix; platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd3; license = licenses.bsd3;
}; };
} }

View File

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = http://leiningen.org/; homepage = http://leiningen.org/;
description = "Project automation for Clojure"; description = "Project automation for Clojure";
license = "EPL"; license = "EPL";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.linux;
maintainer = with stdenv.lib.maintainers; [ the-kenny ]; maintainer = with stdenv.lib.maintainers; [ the-kenny ];
}; };
} }

View File

@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.linux;
}; };
} }

View File

@ -34,8 +34,8 @@ in stdenv.mkDerivation rec {
}; };
buildInputs = [ pkgconfig glib ] buildInputs = [ pkgconfig glib ]
++ opt (!stdenv.isDarwin) systemd ++ opt stdenv.isLinux systemd
++ opt (!stdenv.isDarwin && alsaSupport) alsaLib ++ opt (stdenv.isLinux && alsaSupport) alsaLib
++ opt flacSupport flac ++ opt flacSupport flac
++ opt vorbisSupport libvorbis ++ opt vorbisSupport libvorbis
# using libmad to decode mp3 files on darwin is causing a segfault -- there # using libmad to decode mp3 files on darwin is causing a segfault -- there
@ -81,7 +81,7 @@ in stdenv.mkDerivation rec {
(mkFlag mpg123Support "mpg123") (mkFlag mpg123Support "mpg123")
(mkFlag aacSupport "aac") (mkFlag aacSupport "aac")
"--enable-debugging" ] "--enable-debugging" ]
++ opt (!stdenv.isDarwin) ++ opt stdenv.isLinux
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"; "--with-systemdsystemunitdir=$(out)/etc/systemd/system";
NIX_LDFLAGS = '' NIX_LDFLAGS = ''