1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-08 21:43:14 +00:00
nixpkgs/pkgs/development/libraries/haskell/lens-datetime/default.nix

15 lines
407 B
Nix
Raw Normal View History

2013-08-25 20:42:46 +01:00
{ cabal, lens, time }:
cabal.mkDerivation (self: {
pname = "lens-datetime";
version = "0.2";
sha256 = "0wrs7alz1zfg1xrg04lhz01mrd1gcz2xr8b5mxfdvq94f5m87sdr";
2013-08-25 20:42:46 +01:00
buildDepends = [ lens time ];
meta = {
homepage = "http://github.com/klao/lens-datetime";
description = "Lenses for Data.Time.* types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})