2014-03-26 01:50:38 -07:00
|
|
|
{ cabal, filepath, HUnit, languageC, shelly, testFramework
|
|
|
|
, testFrameworkHunit, text
|
|
|
|
}:
|
2012-05-09 09:19:52 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "c2hs";
|
2014-03-26 01:50:38 -07:00
|
|
|
version = "0.16.6";
|
|
|
|
sha256 = "1yf7mcslkf6m1nizifqva8j5sxnw87bg60dw8mfgpmqvrzpbxizm";
|
2012-05-09 09:19:52 -07:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ filepath languageC ];
|
2014-03-26 01:50:38 -07:00
|
|
|
testDepends = [
|
|
|
|
filepath HUnit shelly testFramework testFrameworkHunit text
|
|
|
|
];
|
2012-05-09 09:19:52 -07:00
|
|
|
meta = {
|
2013-08-11 10:18:43 -07:00
|
|
|
homepage = "https://github.com/haskell/c2hs";
|
2012-05-09 09:19:52 -07:00
|
|
|
description = "C->Haskell FFI tool that gives some cross-language type safety";
|
|
|
|
license = self.stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-05-09 09:19:52 -07:00
|
|
|
};
|
|
|
|
})
|