summary refs log tree commit diff
path: root/pkgs/development/idris-modules/lens.nix
blob: e829309fbc01864917ba6937bc9fd94afaf738f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ build-idris-package
, fetchFromGitHub
, bifunctors
, lib
}:
build-idris-package  {
  name = "lens";
  version = "2017-09-25";

  idrisDeps = [ bifunctors ];

  src = fetchFromGitHub {
    owner = "HuwCampbell";
    repo = "idris-lens";
    rev = "421aa76c19607693ac2f23003dc0fe82c1a3760a";
    sha256 = "1q6lmhrwd1qg18s253sim4hg2a2wk5439p3izy1f9ygi6pv4a6mk";
  };

  meta = {
    description = "van Laarhoven lenses for Idris";
    homepage = "https://github.com/HuwCampbell/idris-lens";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.brainrape ];
  };
}