nixpkgs/pkgs/development/libraries/haskell/unix-time/default.nix

14 lines
404 B
Nix
Raw Normal View History

{ cabal, doctest, hspec, QuickCheck, time }:
2012-08-09 11:12:45 +02:00
cabal.mkDerivation (self: {
pname = "unix-time";
version = "0.1.10";
sha256 = "0z8i02j295fi0y512bwhxfk2dr2s4i0xlgi80pnq680zdrahgwlf";
testDepends = [ doctest hspec QuickCheck time ];
2012-08-09 11:12:45 +02:00
meta = {
description = "Unix time parser/formatter and utilities";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})