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

28 lines
863 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2013-10-20 16:06:40 +02:00
{ cabal, binary, cryptohash, deepseq, hashable, HUnit, networkInfo
, QuickCheck, random, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, time
}:
2013-02-18 11:20:20 +01:00
cabal.mkDerivation (self: {
pname = "uuid";
2014-09-10 20:40:48 +02:00
version = "1.3.4";
sha256 = "03gab2dg52i4ysxw6vdzdd018qy0lycq7x3gcbx0r9c8vsqvafmc";
2013-10-20 16:06:40 +02:00
buildDepends = [
binary cryptohash deepseq hashable networkInfo random time
];
testDepends = [
2013-10-20 16:06:40 +02:00
HUnit QuickCheck random testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
jailbreak = true;
2013-10-16 17:05:36 +02:00
doCheck = false;
2013-02-18 11:20:20 +01: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;
};
})