2014-04-11 04:20:21 +02:00
|
|
|
{ cabal, filepath, languageCQuote, mainlandPretty }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "language-c-inline";
|
2014-06-03 11:35:36 +02:00
|
|
|
version = "0.6.0.0";
|
|
|
|
sha256 = "08a22sr01kch365p5536fv32rxsfmdd6hkhcq1j7vhchjrsy3f6w";
|
2014-04-11 04:20:21 +02:00
|
|
|
buildDepends = [ filepath languageCQuote mainlandPretty ];
|
2014-04-11 22:28:18 +02:00
|
|
|
testDepends = [ languageCQuote ];
|
2014-04-11 04:20:21 +02:00
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mchakravarty/language-c-inline/";
|
|
|
|
description = "Inline C & Objective-C code in Haskell for language interoperability";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|