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

24 lines
826 B
Nix
Raw Normal View History

{ cabal, binary, criterion, cryptohash, deepseq, HUnit, maccatcher
2013-09-02 12:20:18 +01:00
, mersenneRandomPure64, QuickCheck, random, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, time
}:
2013-02-18 10:20:20 +00:00
cabal.mkDerivation (self: {
pname = "uuid";
2013-09-02 12:20:18 +01:00
version = "1.2.14";
sha256 = "13r2yzhb9nj1h6wfy7w9k59d27z9iza5r4apmf72zby2fi9vdnwy";
2013-02-18 10:20:20 +00:00
buildDepends = [ binary cryptohash maccatcher random time ];
testDepends = [
criterion deepseq HUnit mersenneRandomPure64 QuickCheck random
2013-09-02 12:20:18 +01:00
testFramework testFrameworkHunit testFrameworkQuickcheck2
];
jailbreak = true;
2013-10-16 16:05:36 +01:00
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;
};
})