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,10 +1,10 @@
{cabal, happy}:
{ cabal, happy }:
cabal.mkDerivation (self: {
pname = "haskell-src";
version = "1.0.1.3"; # Haskell Platform 2009.0.0 and 2010.1.0.0 and 2010.2.0.0
version = "1.0.1.3";
sha256 = "a7872900acd2293775a6bdc6dc8f70438ccd80e62d2d1e2394ddff15b1883e89";
extraBuildInputs = [happy];
buildTools = [ happy ];
meta = {
description = "Manipulating Haskell source code";
license = self.stdenv.lib.licenses.bsd3;

View File

@@ -1,11 +1,11 @@
{cabal, happy, syb}:
{ cabal, happy, syb }:
cabal.mkDerivation (self : {
cabal.mkDerivation (self: {
pname = "haskell-src";
version = "1.0.1.4"; # Haskell Platform 2011.2.0.0
version = "1.0.1.4";
sha256 = "02h33d7970641p9vi62sgcxb5v4yaz8xx9vf2yxyvxs3hglm7f0j";
extraBuildInputs = [happy];
propagatedBuildInputs = [syb];
buildDepends = [ syb ];
buildTools = [ happy ];
meta = {
description = "Support for manipulating Haskell source code";
license = self.stdenv.lib.licenses.bsd3;