nixpkgs/pkgs/development/libraries/haskell/c2hs/default.nix

27 lines
817 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-09-01 06:10:34 -07:00
{ cabal, dlist, filepath, HUnit, languageC, shelly, testFramework
, testFrameworkHunit, text, transformers, yaml
2014-03-26 01:50:38 -07:00
}:
cabal.mkDerivation (self: {
pname = "c2hs";
2014-09-01 06:10:34 -07:00
version = "0.18.1";
sha256 = "17miqihfidzd1nqdswnd7j0580jlv2pj19wxlx8vb3dc5wga58xd";
isLibrary = false;
isExecutable = true;
2014-09-01 06:10:34 -07:00
buildDepends = [ dlist filepath languageC shelly text yaml ];
2014-03-26 01:50:38 -07:00
testDepends = [
2014-09-01 06:10:34 -07:00
filepath HUnit shelly testFramework testFrameworkHunit text
transformers
2014-03-26 01:50:38 -07:00
];
jailbreak = true;
doCheck = false;
meta = {
2013-08-11 10:18:43 -07:00
homepage = "https://github.com/haskell/c2hs";
description = "C->Haskell FFI tool that gives some cross-language type safety";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
};
})