haskell-union-find: add version 0.2

This commit is contained in:
Peter Simons 2013-08-11 23:56:02 +02:00
parent 1ce0c6d4e3
commit 1ccc0025e4
2 changed files with 16 additions and 0 deletions

@ -0,0 +1,14 @@
{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "union-find";
version = "0.2";
sha256 = "1v7hj42j9w6jlzi56jg8rh4p58gfs1c5dx30wd1qqvn0p0mnihp6";
buildDepends = [ transformers ];
meta = {
homepage = "http://github.com/nominolo/union-find";
description = "Efficient union and equivalence testing of sets";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

@ -1990,6 +1990,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
unboundedDelays = callPackage ../development/libraries/haskell/unbounded-delays {};
unionFind = callPackage ../development/libraries/haskell/union-find {};
uniplate = callPackage ../development/libraries/haskell/uniplate {};
uniqueid = callPackage ../development/libraries/haskell/uniqueid {};