2013-09-11 19:02:46 +01:00
|
|
|
{ cabal, HUnit, llvmConfig, llvmGeneralPure, mtl, parsec
|
|
|
|
, QuickCheck, setenv, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkQuickcheck2, transformers, utf8String
|
2013-08-01 07:24:31 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "llvm-general";
|
2013-09-11 19:02:46 +01:00
|
|
|
version = "3.3.8.1";
|
|
|
|
sha256 = "1w9wqi9mj673s0bm3j4a5kapl5f65sy8mwjbw7ydism6j5jmxhpk";
|
|
|
|
buildDepends = [
|
|
|
|
llvmGeneralPure mtl parsec setenv transformers utf8String
|
|
|
|
];
|
2013-08-01 07:24:31 +01:00
|
|
|
testDepends = [
|
2013-09-11 19:02:46 +01:00
|
|
|
HUnit llvmGeneralPure mtl QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2
|
2013-08-01 07:24:31 +01:00
|
|
|
];
|
|
|
|
buildTools = [ llvmConfig ];
|
|
|
|
meta = {
|
|
|
|
description = "General purpose LLVM bindings";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|