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

28 lines
862 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-12-24 13:51:38 +01:00
version = "1.3.7";
sha256 = "01idfi9vdmcz8fkgnfa0bpz6khx4x2r0rzynzha42irl7881da21";
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 = {
2014-12-24 13:51:38 +01:00
homepage = "https://github.com/aslatter/uuid";
2013-02-18 11:20:20 +01:00
description = "For creating, comparing, parsing and printing Universally Unique Identifiers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})