nixpkgs/pkgs/development/libraries/haskell/time/1.4.1.nix

21 lines
583 B
Nix
Raw Normal View History

{ cabal, Cabal, deepseq, QuickCheck, testFramework
, testFrameworkQuickcheck2
}:
2012-11-26 15:16:00 +01:00
cabal.mkDerivation (self: {
pname = "time";
2013-07-01 11:00:50 +02:00
version = "1.4.1";
sha256 = "04ndcp7m1a7mia4by15dqrwl5k0d2477x20s6xcrdb7in8w9ccvp";
2012-11-26 15:16:00 +01:00
buildDepends = [ deepseq ];
testDepends = [
Cabal deepseq QuickCheck testFramework testFrameworkQuickcheck2
];
2012-11-26 15:16:00 +01:00
meta = {
homepage = "http://semantic.org/TimeLib/";
description = "A time library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-11-26 15:16:00 +01:00
};
})