3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #2682 from wavewave/hgal

hgal: haskell library for computation automorphism group of a graph
This commit is contained in:
Austin Seipp 2014-05-18 07:46:52 -05:00
commit 31012648e8
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
})

View file

@ -965,6 +965,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hexpat = callPackage ../development/libraries/haskell/hexpat {};
hgal = callPackage ../development/libraries/haskell/hgal {};
hourglass = callPackage ../development/libraries/haskell/hourglass {};
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};