summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/fgl/5.4.2.3.nix
blob: 488e8d2001afcfe7b3e791b2ce1e6e9c8eb70501 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal, mtl }:

cabal.mkDerivation (self: {
  pname = "fgl";
  version = "5.4.2.3";
  sha256 = "1f46siqqv8bc9v8nxr72nxabpzfax117ncgdvif6rax5ansl48g7";
  buildDepends = [ Cabal 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
      self.stdenv.lib.maintainers.simons
    ];
  };
})