summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/data-lens-template/default.nix
blob: 208f021e8af4ac85a6111d8c777a07e5b29a863b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})