haskell-haskell-src: added version 1.0.1.5

svn path=/nixpkgs/trunk/; revision=30409
This commit is contained in:
Peter Simons 2011-11-13 01:38:09 +00:00
parent d2464a9fe1
commit 3e4045ee9f
2 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,18 @@
{ cabal, happy, syb }:
cabal.mkDerivation (self: {
pname = "haskell-src";
version = "1.0.1.5";
sha256 = "1ay3i2sbrp0pzg6fagg8gqrwq5lcnm5jb5sr11frbk274a82cdwz";
buildDepends = [ syb ];
buildTools = [ happy ];
meta = {
description = "Support for manipulating Haskell source code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})

View file

@ -127,7 +127,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cgi = self.cgi_3001_1_7_4; # 7.2 ok, 7.3 ok
fgl = self.fgl_5_4_2_4; # 7.2 ok, 7.3 ok
GLUT = self.GLUT_2_1_2_1; # 7.2 ok, 7.3 ok
haskellSrc = self.haskellSrc_1_0_1_4; # 7.2 fails, 7.3 fails
haskellSrc = self.haskellSrc_1_0_1_5; # 7.2 fails, 7.3 fails
html = self.html_1_0_1_2; # 7.2 ok, 7.3 ok
HUnit = self.HUnit_1_2_2_3; # 7.2 ok, 7.3 ok
network = self.network_2_3_0_7; # 7.2 ok, 7.3 ok
@ -683,7 +683,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
haskellSrc_1_0_1_3 = callPackage ../development/libraries/haskell/haskell-src/1.0.1.3.nix {};
haskellSrc_1_0_1_4 = callPackage ../development/libraries/haskell/haskell-src/1.0.1.4.nix {};
haskellSrc = self.haskellSrc_1_0_1_3;
haskellSrc_1_0_1_5 = callPackage ../development/libraries/haskell/haskell-src/1.0.1.5.nix {};
haskellSrc = self.haskellSrc_1_0_1_5;
# The old version is required for Agda.
haskellSrcExts_1_11_1 = callPackage ../development/libraries/haskell/haskell-src-exts/1.11.1.nix {};