1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00
nixpkgs/pkgs/development/libraries/haskell/c2hs/default.nix

27 lines
794 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-09-01 14:10:34 +01:00
{ cabal, dlist, filepath, HUnit, languageC, shelly, testFramework
2014-09-13 18:53:00 +01:00
, testFrameworkHunit, text, transformers
2014-03-26 08:50:38 +00:00
}:
cabal.mkDerivation (self: {
pname = "c2hs";
2014-09-13 18:53:00 +01:00
version = "0.18.2";
sha256 = "0rkarj8y8sj83svjz9jivrr1dh2ryky4sb35cxlyxv623bl6sc1x";
isLibrary = false;
isExecutable = true;
2014-09-13 18:53:00 +01:00
buildDepends = [ dlist filepath languageC ];
2014-03-26 08:50:38 +00:00
testDepends = [
2014-09-01 14:10:34 +01:00
filepath HUnit shelly testFramework testFrameworkHunit text
transformers
2014-03-26 08:50:38 +00:00
];
jailbreak = true;
doCheck = false;
meta = {
2013-08-11 18:18:43 +01: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;
};
})