2012-05-20 18:38:03 +01:00
|
|
|
{ cabal, alex, exceptionMtl, exceptionTransformers, filepath, happy
|
2013-02-24 21:09:07 +00:00
|
|
|
, haskellSrcMeta, HUnit, mainlandPretty, mtl, srcloc, syb, symbol
|
|
|
|
, testFramework, testFrameworkHunit
|
2012-05-20 18:38:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "language-c-quote";
|
2012-12-12 10:54:27 +00:00
|
|
|
version = "0.4.4";
|
|
|
|
sha256 = "1g233ja3qy64xcimy9irfb3n8zys00vg1d0s4g3hr48ilc95dl8l";
|
2012-05-20 18:38:03 +01:00
|
|
|
buildDepends = [
|
|
|
|
exceptionMtl exceptionTransformers filepath haskellSrcMeta
|
|
|
|
mainlandPretty mtl srcloc syb symbol
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
HUnit srcloc symbol testFramework testFrameworkHunit
|
|
|
|
];
|
2012-05-20 18:38:03 +01:00
|
|
|
buildTools = [ alex happy ];
|
2013-01-04 18:17:22 +00:00
|
|
|
jailbreak = true;
|
2012-05-20 18:38:03 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.eecs.harvard.edu/~mainland/";
|
|
|
|
description = "C/CUDA/OpenCL quasiquoting library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-05-20 18:38:03 +01:00
|
|
|
};
|
|
|
|
})
|