about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unix-time/default.nix
blob: 482109cc5c40775b53d2c615b3d1780aeacef44f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, binary, doctest, hspec, QuickCheck, time }:

cabal.mkDerivation (self: {
  pname = "unix-time";
  version = "0.3.1";
  sha256 = "1r7glbcr3108zrlpy2d09jyk1gv9k90d5saajipmb1f5l45rdhnj";
  buildDepends = [ binary ];
  testDepends = [ doctest hspec QuickCheck time ];
  meta = {
    description = "Unix time parser/formatter and utilities";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})