Added haskell-mpi and dependencies.

svn path=/nixpkgs/trunk/; revision=34030
This commit is contained in:
Andres Löh
2012-05-09 16:19:52 +00:00
parent c1dd4327dc
commit aa6e1f4586
4 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, filepath, languageC }:
cabal.mkDerivation (self: {
pname = "c2hs";
version = "0.16.3";
sha256 = "1qqsxfdkf5sfj3mvk265dbng3br9w633y8v1piajqaidki7vwqm5";
isLibrary = false;
isExecutable = true;
buildDepends = [ filepath languageC ];
meta = {
homepage = "http://www.cse.unsw.edu.au/~chak/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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})