nixpkgs/pkgs/development/libraries/haskell/fgl/5.4.2.2.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

16 lines
483 B
Nix

{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "fgl";
version = "5.4.2.2";
sha256 = "8232c337f0792854bf2a12a5fd1bc46726fff05d2f599053286ff873364cd7d2";
buildDepends = [ mtl ];
meta = {
homepage = "http://web.engr.oregonstate.edu/~erwig/fgl/haskell";
description = "Martin Erwig's Functional Graph Library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})