about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/zippers/default.nix
blob: 6a06b470d2e85738c78f391030e885d11fc7d719 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, doctest, filepath, lens, profunctors, semigroupoids }:

cabal.mkDerivation (self: {
  pname = "zippers";
  version = "0.2";
  sha256 = "1rlf01dc6dcy9sx89npsisdz1yg9v4h2byd6ms602bxnmjllm1ls";
  buildDepends = [ lens profunctors semigroupoids ];
  testDepends = [ doctest filepath ];
  meta = {
    homepage = "http://github.com/ekmett/zippers/";
    description = "Traversal based zippers";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})