Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 build-idris-package, 3 fetchFromGitHub, 4 bifunctors, 5 lib, 6}: 7build-idris-package { 8 pname = "lens"; 9 version = "2017-09-25"; 10 11 idrisDeps = [ bifunctors ]; 12 13 src = fetchFromGitHub { 14 owner = "HuwCampbell"; 15 repo = "idris-lens"; 16 rev = "421aa76c19607693ac2f23003dc0fe82c1a3760a"; 17 sha256 = "1q6lmhrwd1qg18s253sim4hg2a2wk5439p3izy1f9ygi6pv4a6mk"; 18 }; 19 20 meta = { 21 description = "van Laarhoven lenses for Idris"; 22 homepage = "https://github.com/HuwCampbell/idris-lens"; 23 license = lib.licenses.bsd3; 24 maintainers = [ lib.maintainers.brainrape ]; 25 }; 26}