Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 490 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5}: 6 7buildDunePackage rec { 8 pname = "lun"; 9 version = "0.0.1"; 10 11 minimalOCamlVersion = "4.12.0"; 12 13 src = fetchurl { 14 url = "https://github.com/robur-coop/lun/releases/download/v${version}/lun-${version}.tbz"; 15 hash = "sha256-zKi63/g7Rw/c+xhAEW+Oim8suGzeL0TtKM8my/aSp5M="; 16 }; 17 18 meta = { 19 description = "Optics in OCaml"; 20 homepage = "https://git.robur.coop/robur/lun"; 21 license = lib.licenses.isc; 22 maintainers = [ ]; 23 }; 24}