nixpkgs/pkgs/development/libraries/haskell/lens-datetime/default.nix

15 lines
412 B
Nix
Raw Normal View History

2013-08-25 20:42:46 +01:00
{ cabal, lens, time }:
cabal.mkDerivation (self: {
pname = "lens-datetime";
2014-04-02 12:07:34 +01:00
version = "0.2.1";
sha256 = "1wqks7ynw3njlizdd9hvgrc1xjxcgcfck9ppj1lgg8wr3l2myi72";
2013-08-25 20:42:46 +01:00
buildDepends = [ lens time ];
meta = {
2014-04-02 12:07:34 +01:00
homepage = "http://github.com/nilcons/lens-datetime";
2013-08-25 20:42:46 +01:00
description = "Lenses for Data.Time.* types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})