24 lines
588 B
Nix
24 lines
588 B
Nix
|
{ lib
|
||
|
, buildDunePackage
|
||
|
, fetchurl
|
||
|
}:
|
||
|
|
||
|
buildDunePackage rec {
|
||
|
pname = "kicadsch";
|
||
|
version = "0.9.0";
|
||
|
|
||
|
minimalOCamlVersion = "4.07";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/jnavila/plotkicadsch/releases/download/v${version}/plotkicadsch-${version}.tbz";
|
||
|
sha256 = "sha256-B+vnEPyd3SUzviTdNoyvYk0p7Hrg/XTJm8KxsY8A4jQ=";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "OCaml library for exporting Kicad Sch files to SVG pictures";
|
||
|
homepage = "https://github.com/jnavila/plotkicadsch";
|
||
|
license = licenses.isc;
|
||
|
maintainers = with maintainers; [ leungbk ];
|
||
|
};
|
||
|
}
|