2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, parsec, text }:
|
2011-09-21 18:46:39 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "maude";
|
2012-01-06 14:30:02 +01:00
|
|
|
version = "0.3.0";
|
|
|
|
sha256 = "1z9bk4fzkbfiqqx4mv4cdlckchvcli2gcp40d04ravvj7x6yaghg";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ parsec text ];
|
2011-09-21 18:46:39 +02:00
|
|
|
meta = {
|
2012-01-06 14:30:02 +01:00
|
|
|
homepage = "https://github.com/davidlazar/maude-hs";
|
2011-09-21 18:46:39 +02:00
|
|
|
description = "An interface to the Maude rewriting system";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-21 18:46:39 +02:00
|
|
|
};
|
|
|
|
})
|