haskell-syntactic: update to version 2.0

This commit is contained in:
Peter Simons 2014-07-03 17:00:56 +02:00
parent 3be3743e3c
commit 3e8934f801

View File

@ -1,21 +1,20 @@
{ cabal, constraints, dataHash, mtl, QuickCheck, tasty, tastyGolden { cabal, constraints, dataHash, mtl, QuickCheck, safe, tagged
, tastyQuickcheck, tastyTh, transformers, treeView, tuple , tasty, tastyGolden, tastyQuickcheck, tastyTh, treeView
, utf8String , utf8String
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "syntactic"; pname = "syntactic";
version = "1.13"; version = "2.0";
sha256 = "1d5mb7ss6xr7rj93mwrdvkxkx1dlmywxx9sxsmqy7l6gaxs6gq8l"; sha256 = "0b90afdfymsbgllk8np3xfkgrn2b5ry3n2wbpkn660rknsayw94x";
buildDepends = [ buildDepends = [ constraints dataHash mtl safe tagged treeView ];
constraints dataHash mtl transformers treeView tuple
];
testDepends = [ testDepends = [
mtl QuickCheck tasty tastyGolden tastyQuickcheck tastyTh utf8String QuickCheck tagged tasty tastyGolden tastyQuickcheck tastyTh
utf8String
]; ];
meta = { meta = {
homepage = "https://github.com/emilaxelsson/syntactic"; homepage = "https://github.com/emilaxelsson/syntactic";
description = "Generic abstract syntax, and utilities for embedded languages"; description = "Generic representation and manipulation of abstract syntax";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
}; };