about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hgal/default.nix
blob: b8d86d5d3039baa8cac225e300513a0126542547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, mtl }:

cabal.mkDerivation (self: {
  pname = "hgal";
  version = "2.0.0.2";
  sha256 = "17qw8izy54042g56mp3hdbmqcyk95cdarg58xggniwd85q2l5dpi";
  buildDepends = [ mtl ];
  meta = {
    description = "library for computation automorphism group and canonical labelling of a graph";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ianwookim ];
  };
})