nixpkgs/pkgs/development/idris-modules/lens.nix
2020-04-10 17:54:53 +01:00

26 lines
579 B
Nix

{ 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 ];
};
}