haskellPackages.ariadne: New expression and related dependencies

This commit is contained in:
Oliver Charles
2013-11-18 14:34:52 +00:00
committed by Peter Simons
parent 144a833cd0
commit 7a18f1125e
12 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, cpphs, haskellSrcExts }:
cabal.mkDerivation (self: {
pname = "hse-cpp";
version = "0.1";
sha256 = "0f1bgi1hnpnry1pm7jhi626afdvymzy7k0a70n07n41js46pjxd0";
buildDepends = [ cpphs haskellSrcExts ];
meta = {
description = "Preprocess+parse haskell code";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})