nixpkgs/pkgs/development/libraries/haskell/haskell-src/1.0.1.3.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
417 B
Nix

{ cabal, happy }:
cabal.mkDerivation (self: {
pname = "haskell-src";
version = "1.0.1.3";
sha256 = "a7872900acd2293775a6bdc6dc8f70438ccd80e62d2d1e2394ddff15b1883e89";
buildTools = [ happy ];
meta = {
description = "Manipulating Haskell source code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})