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

@@ -9,6 +9,6 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/AccelerateHS/accelerate-fft";
description = "FFT using the Accelerate library";
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";
description = "Haskell bindings for the CUFFT library";
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; {
description = "V8 is Google's open source JavaScript engine";
platforms = platforms.unix;
platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd3;
};
}