3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
494 B
Nix
18 lines
494 B
Nix
{ cabal, comonad, comonadTransformers, semigroupoids, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "data-lens";
|
|
version = "2.10.2";
|
|
sha256 = "1mv4lh5rhmq09d89ci07kj9anv7ckrlqh9x3xr4jq9idf7sf54b5";
|
|
buildDepends = [
|
|
comonad comonadTransformers semigroupoids transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/roconnor/data-lens/";
|
|
description = "Haskell 98 Lenses";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|