nixpkgs/pkgs/development/libraries/haskell/uuid/default.nix

21 lines
682 B
Nix
Raw Normal View History

{ cabal, binary, criterion, cryptohash, deepseq, HUnit, maccatcher
, mersenneRandomPure64, QuickCheck, random, time
}:
2013-02-18 10:20:20 +00:00
cabal.mkDerivation (self: {
pname = "uuid";
2013-04-30 13:11:01 +01:00
version = "1.2.12";
sha256 = "023954gx1hqf1v4qlzwy3nlxwn9yll0642p16w3vayrahcm27ljb";
2013-02-18 10:20:20 +00:00
buildDepends = [ binary cryptohash maccatcher random time ];
testDepends = [
criterion deepseq HUnit mersenneRandomPure64 QuickCheck random
];
doCheck = false;
2013-02-18 10:20:20 +00:00
meta = {
homepage = "http://projects.haskell.org/uuid/";
description = "For creating, comparing, parsing and printing Universally Unique Identifiers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})