2014-02-03 01:40:29 +00:00
|
|
|
{ cabal, HUnit, llvmConfig, llvmGeneralPure, mtl, parsec
|
|
|
|
, QuickCheck, setenv, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkQuickcheck2, transformers, utf8String
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "llvm-general";
|
2014-03-19 10:47:30 +00:00
|
|
|
version = "3.4.2.1";
|
|
|
|
sha256 = "0967pijv6x5l80igdcp1nza6ix32i8s8z3hzmp6qa9nx25sqviw1";
|
2014-02-03 01:40:29 +00:00
|
|
|
buildDepends = [
|
|
|
|
llvmGeneralPure mtl parsec setenv transformers utf8String
|
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
HUnit llvmGeneralPure mtl QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2
|
|
|
|
];
|
|
|
|
buildTools = [ llvmConfig ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
description = "General purpose LLVM bindings";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|