summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/time/1.4.0.2.nix
blob: 2c6f0ae55947bd771053e699fa4e2a282b7bdfc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ cabal, Cabal, deepseq, QuickCheck, testFramework
, testFrameworkQuickcheck2
}:

cabal.mkDerivation (self: {
  pname = "time";
  version = "1.4.0.2";
  sha256 = "0p4ncankr9968lp4fnbq6pc5xwv2198gxhbds656da9jbv74w7j8";
  buildDepends = [ deepseq ];
  testDepends = [
    Cabal deepseq QuickCheck testFramework testFrameworkQuickcheck2
  ];
  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
      self.stdenv.lib.maintainers.simons
    ];
  };
})