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

26 lines
788 B
Nix
Raw Normal View History

2013-10-20 15:06:40 +01:00
{ cabal, binary, cryptohash, deepseq, hashable, HUnit, networkInfo
, QuickCheck, random, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, time
}:
2013-02-18 10:20:20 +00:00
cabal.mkDerivation (self: {
pname = "uuid";
2013-10-30 13:05:54 +00:00
version = "1.3.3";
sha256 = "12sfspmrnpqbwwscv3w41pkkdbfvy1aaa84y7is0d3ffk5rll80m";
2013-10-20 15:06:40 +01:00
buildDepends = [
binary cryptohash deepseq hashable networkInfo random time
];
testDepends = [
2013-10-20 15:06:40 +01:00
HUnit QuickCheck random 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;
};
})