netlistsvg: init at 1.0.2

This commit is contained in:
Peder Bergebakken Sundt 2023-08-06 04:23:34 +02:00 committed by Yt
parent f5465f7d51
commit c49f338aeb
4 changed files with 9824 additions and 0 deletions

View file

@ -0,0 +1,54 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
, runCommandLocal
, netlistsvg
, yosys
}:
buildNpmPackage rec {
pname = "netlistsvg";
version = "1.0.2";
src = fetchFromGitHub {
owner = "nturley";
repo = "netlistsvg";
rev = "refs/tags/v${version}";
hash = "sha256-H37zhjfv7c/TV+pAk70eDiE6ZQ9JjZq1TFvac6OOKBk=";
};
postPatch = ''
cp ${./package-lock.json} ./package-lock.json
'';
npmDepsHash = "sha256-nKxskNW8YFDloA9Nxs/Rfjew8nX+l9xKB8/8313KoYo=";
dontNpmBuild = true;
doCheck = true;
checkPhase = ''
runHook preCheck
node --trace-warnings test/test-all.js
runHook postCheck
'';
# An integration test: Synthesize a circuit from hdl and generate a diagram
passthru.tests.netlistsvg-yosys-integration-test = runCommandLocal "netlistsvg-yosys-integration-test" {
nativeBuildInputs = [ netlistsvg yosys ];
} ''
yosys -p "prep -top helloworld -flatten; aigmap; write_json circuit.json" ${./test.v}
netlistsvg circuit.json -o circuit.svg
test -s circuit.svg
touch $out
'';
meta = {
description = "Draw SVG digital circuits schematics from yosys JSON netlists";
homepage = "https://neilturley.dev/netlistsvg/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pbsds ];
};
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,7 @@
module helloworld (
input wire[7:0] a,
input wire[7:0] b,
output wire[7:0] c,
);
assign c = a + b;
endmodule

View file

@ -11080,6 +11080,8 @@ with pkgs;
netlify-cli = callPackage ../development/web/netlify-cli { }; netlify-cli = callPackage ../development/web/netlify-cli { };
netlistsvg = callPackage ../applications/science/logic/netlistsvg { };
netpbm = callPackage ../tools/graphics/netpbm { }; netpbm = callPackage ../tools/graphics/netpbm { };
netproc = callPackage ../tools/networking/netproc { }; netproc = callPackage ../tools/networking/netproc { };