haskell-src-exts: add version 1.14.0 and drop obsolete 1.11.1

This commit is contained in:
Peter Simons
2013-08-21 11:52:57 +02:00
parent 37440d740c
commit 67167c9170
2 changed files with 10 additions and 5 deletions

View File

@@ -1,14 +1,19 @@
{ cabal, cpphs, happy }:
{ cabal, cpphs, filepath, happy, smallcheck, tasty, tastyHunit
, tastySmallcheck
}:
cabal.mkDerivation (self: {
pname = "haskell-src-exts";
version = "1.11.1";
sha256 = "1jqf8l81zw7x5ryf8h2n0b2636yhxkfp3j4ndbqw6hc7i5q581m6";
version = "1.14.0";
sha256 = "070khsw56xwyrclamv5wckj9na2xbzibv702xx52ik2wbs21dr0d";
buildDepends = [ cpphs ];
testDepends = [
filepath smallcheck tasty tastyHunit tastySmallcheck
];
buildTools = [ happy ];
doCheck = false;
meta = {
homepage = "http://code.haskell.org/haskell-src-exts";
homepage = "https://github.com/haskell-suite/haskell-src-exts";
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;