Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 588 B view raw
1{ lib 2, buildDunePackage 3, fetchurl 4}: 5 6buildDunePackage rec { 7 pname = "kicadsch"; 8 version = "0.9.0"; 9 10 minimalOCamlVersion = "4.07"; 11 12 src = fetchurl { 13 url = "https://github.com/jnavila/plotkicadsch/releases/download/v${version}/plotkicadsch-${version}.tbz"; 14 sha256 = "sha256-B+vnEPyd3SUzviTdNoyvYk0p7Hrg/XTJm8KxsY8A4jQ="; 15 }; 16 17 meta = with lib; { 18 description = "OCaml library for exporting Kicad Sch files to SVG pictures"; 19 homepage = "https://github.com/jnavila/plotkicadsch"; 20 license = licenses.isc; 21 maintainers = with maintainers; [ leungbk ]; 22 }; 23}