Updated build expressions for the current version of cabal.nix.

svn path=/nixpkgs/trunk/; revision=28772
This commit is contained in:
Peter Simons
2011-08-23 10:35:49 +00:00
parent 1972e6f6dc
commit c8ae7cc8bb
34 changed files with 153 additions and 108 deletions

View File

@@ -1,4 +1,4 @@
{ cabal, mtl, happy, gmp, boehmgc }:
{ cabal, boehmgc, gmp, happy, mtl }:
cabal.mkDerivation (self: {
pname = "epic";
@@ -7,9 +7,9 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl ];
buildTools = [ happy ];
extraLibraries = [ gmp boehmgc ];
noHaddock = true;
buildTools = [ happy ];
meta = {
homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php";
description = "Compiler for a simple functional language";

View File

@@ -1,4 +1,4 @@
{ cabal, binary, epic, ivor, mtl, parsec, readline, happy }:
{ cabal, binary, epic, happy, ivor, mtl, parsec, readline }:
cabal.mkDerivation (self: {
pname = "idris";