mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #2682 from wavewave/hgal
hgal: haskell library for computation automorphism group of a graph
This commit is contained in:
commit
31012648e8
14
pkgs/development/libraries/haskell/hgal/default.nix
Normal file
14
pkgs/development/libraries/haskell/hgal/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
})
|
@ -965,6 +965,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||||||
|
|
||||||
hexpat = callPackage ../development/libraries/haskell/hexpat {};
|
hexpat = callPackage ../development/libraries/haskell/hexpat {};
|
||||||
|
|
||||||
|
hgal = callPackage ../development/libraries/haskell/hgal {};
|
||||||
|
|
||||||
hourglass = callPackage ../development/libraries/haskell/hourglass {};
|
hourglass = callPackage ../development/libraries/haskell/hourglass {};
|
||||||
|
|
||||||
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};
|
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};
|
||||||
|
Loading…
Reference in New Issue
Block a user