nixpkgs/pkgs/development/libraries/haskell/data-lens-template/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
416 B
Nix

{ cabal, dataLens }:
cabal.mkDerivation (self: {
pname = "data-lens-template";
version = "2.1.7";
sha256 = "108xvk5glsw016vdvjb1p3a9zh7rgbkjv5xashs1hj25f8k4cw49";
buildDepends = [ dataLens ];
meta = {
homepage = "http://github.com/roconnor/data-lens-template/";
description = "Utilities for Data.Lens";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})