2013-09-11 19:07:49 +01:00
|
|
|
{ cabal, HUnit, mtl, parsec, QuickCheck, setenv, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "llvm-general-pure";
|
2013-09-18 09:24:40 +01:00
|
|
|
version = "3.3.8.2";
|
|
|
|
sha256 = "171mp9rydw6r2khcmvkcfjk934ckfahwyx1b4a15gmj8sr1s9hzp";
|
2013-09-11 19:07:49 +01:00
|
|
|
buildDepends = [ mtl parsec setenv transformers ];
|
|
|
|
testDepends = [
|
|
|
|
HUnit mtl QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2013-09-20 08:17:23 +01:00
|
|
|
doCheck = false;
|
2013-09-11 19:07:49 +01:00
|
|
|
meta = {
|
|
|
|
description = "Pure Haskell LLVM functionality (no FFI)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|