mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
22 lines
667 B
Nix
22 lines
667 B
Nix
{ cabal, comonad, comonadsFd, comonadTransformers, filepath
|
|
, hashable, mtl, parallel, semigroups, split, text, transformers
|
|
, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "lens";
|
|
version = "3.7.0.2";
|
|
sha256 = "19p71faxr78pis73r2ani0al0lmbq81cws1v2hlgqb4mv2fgw5kn";
|
|
buildDepends = [
|
|
comonad comonadsFd comonadTransformers filepath hashable mtl
|
|
parallel semigroups split text transformers unorderedContainers
|
|
vector
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/ekmett/lens/";
|
|
description = "Lenses, Folds and Traversals";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|