2014-02-02 22:35:43 +01:00
|
|
|
{ cabal, aeson, bifunctors, comonad, constraints, contravariant
|
|
|
|
, deepseq, distributive, doctest, exceptions, filepath
|
|
|
|
, genericDeriving, hashable, hlint, HUnit, mtl, nats, parallel
|
|
|
|
, primitive, profunctors, QuickCheck, reflection, scientific
|
|
|
|
, semigroupoids, semigroups, simpleReflect, split, tagged
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
, testFrameworkTh, text, transformers, transformersCompat
|
|
|
|
, unorderedContainers, utf8String, vector, void, zlib
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "lens";
|
2014-02-13 10:57:08 +01:00
|
|
|
version = "4.0.3";
|
|
|
|
sha256 = "01gf0hxpd136555r9ilzjrc6fyw0ng9bmr8bmkhfnkba127y7hgx";
|
2014-02-02 22:35:43 +01:00
|
|
|
buildDepends = [
|
|
|
|
aeson bifunctors comonad constraints contravariant distributive
|
|
|
|
exceptions filepath hashable mtl parallel primitive profunctors
|
|
|
|
reflection scientific semigroupoids semigroups split tagged text
|
|
|
|
transformers transformersCompat unorderedContainers utf8String
|
|
|
|
vector void zlib
|
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
deepseq doctest filepath genericDeriving hlint HUnit mtl nats
|
|
|
|
parallel QuickCheck semigroups simpleReflect split testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 testFrameworkTh text
|
|
|
|
transformers unorderedContainers vector
|
|
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/lens/";
|
|
|
|
description = "Lenses, Folds and Traversals";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|