22 lines
740 B
Nix
22 lines
740 B
Nix
{ cabal, binary, criterion, cryptohash, deepseq, HUnit, maccatcher
|
|
, mersenneRandomPure64, QuickCheck, random, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "uuid";
|
|
version = "1.2.10";
|
|
sha256 = "17njmmh190pg9bpb8iaw2kniyn7z7j70mzdmxr9h29kydl1xmky6";
|
|
buildDepends = [ binary cryptohash maccatcher random time ];
|
|
testDepends = [
|
|
criterion deepseq HUnit mersenneRandomPure64 QuickCheck random
|
|
];
|
|
doCheck = false;
|
|
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;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|