2014-02-03 01:40:29 +00:00
|
|
|
{ cabal, HUnit, mtl, parsec, QuickCheck, setenv, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "llvm-general-pure";
|
2014-03-19 10:47:09 +00:00
|
|
|
version = "3.4.2.1";
|
|
|
|
sha256 = "0wdx8zk1r7s3chryvwpm8hc73xvhklbmxd998zpvimv4ywil2f67";
|
2014-02-03 01:40:29 +00:00
|
|
|
buildDepends = [ mtl parsec setenv transformers ];
|
|
|
|
testDepends = [
|
|
|
|
HUnit mtl QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
description = "Pure Haskell LLVM functionality (no FFI)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|