3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
413 B
Nix
15 lines
413 B
Nix
{ cabal, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "parsimony";
|
|
version = "1.3";
|
|
sha256 = "0vbayvk989m85qfxxls74rn0v8ylb5l7lywp30sw2wybvi4r08lg";
|
|
buildDepends = [ text ];
|
|
meta = {
|
|
description = "Monadic parser combinators derived from Parsec";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|