51 lines
781 B
Nix
51 lines
781 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
substituteAll,
|
|
base64,
|
|
cmdliner,
|
|
digestif,
|
|
git-unix,
|
|
kicadsch,
|
|
lwt,
|
|
lwt_ppx,
|
|
sha,
|
|
tyxml,
|
|
coreutils,
|
|
imagemagick,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "plotkicadsch";
|
|
duneVersion = "3";
|
|
|
|
inherit (kicadsch) src version;
|
|
|
|
minimalOCamlVersion = "4.09";
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
inherit coreutils imagemagick;
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
base64
|
|
cmdliner
|
|
digestif
|
|
git-unix
|
|
kicadsch
|
|
lwt
|
|
lwt_ppx
|
|
sha
|
|
tyxml
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to export Kicad Sch files to SVG pictures";
|
|
homepage = "https://github.com/jnavila/plotkicadsch";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ leungbk ];
|
|
};
|
|
}
|