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

16 lines
471 B
Nix

{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "fgl";
version = "5.4.2.3";
sha256 = "1f46siqqv8bc9v8nxr72nxabpzfax117ncgdvif6rax5ansl48g7";
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 ];
};
})