haskell-maude: update to version 0.6.1

This commit is contained in:
Peter Simons 2012-07-14 11:02:38 +02:00
parent b52336f242
commit 3f7c859b8e
2 changed files with 5 additions and 7 deletions

View File

@ -1,10 +1,10 @@
{ cabal, parsec, text }:
{ cabal, filepath, processExtras, temporary, text, xml }:
cabal.mkDerivation (self: {
pname = "maude";
version = "0.3.0";
sha256 = "1z9bk4fzkbfiqqx4mv4cdlckchvcli2gcp40d04ravvj7x6yaghg";
buildDepends = [ parsec text ];
version = "0.6.1";
sha256 = "0qadqpj5vzg84mqh29p6vr2ffih7y69ds0jdpxmr17am5bh3mhql";
buildDepends = [ filepath processExtras temporary text xml ];
meta = {
homepage = "https://github.com/davidlazar/maude-hs";
description = "An interface to the Maude rewriting system";

View File

@ -981,9 +981,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
mainlandPretty = callPackage ../development/libraries/haskell/mainland-pretty {};
maude = callPackage ../development/libraries/haskell/maude {
parsec = self.parsec3;
};
maude = callPackage ../development/libraries/haskell/maude {};
MaybeT = callPackage ../development/libraries/haskell/MaybeT {};