nixpkgs/pkgs/development/libraries/haskell/data-lens-template/default.nix

15 lines
414 B
Nix
Raw Normal View History

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