1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/thyme/default.nix
2013-09-08 22:56:24 +02:00

25 lines
719 B
Nix

{ cabal, attoparsec, Cabal, deepseq, filepath, lens, QuickCheck
, random, systemPosixRedirect, text, time, transformers, vector
, vectorSpace
}:
cabal.mkDerivation (self: {
pname = "thyme";
version = "0.3.0.0";
sha256 = "0nv8kp5ax0088z0d9y93xkv59v1i8wrrdprsj7bknk3yn0gd2gb3";
buildDepends = [
attoparsec deepseq lens QuickCheck random text time transformers
vector vectorSpace
];
testDepends = [
attoparsec Cabal filepath lens QuickCheck random
systemPosixRedirect text time vectorSpace
];
meta = {
homepage = "https://github.com/liyang/thyme";
description = "A faster time library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})