Commit c49f338a authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by Yt
Browse files

netlistsvg: init at 1.0.2

parent f5465f7d
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+9761 −0

File added.

Preview size limit exceeded, changes collapsed.

+7 −0
Original line number Diff line number Diff line
module helloworld (
    input wire[7:0] a,
    input wire[7:0] b,
    output wire[7:0] c,
);
    assign c = a + b;
endmodule
+2 −0
Original line number Diff line number Diff line
@@ -11080,6 +11080,8 @@ with pkgs;
  netlify-cli = callPackage ../development/web/netlify-cli { };
  netlistsvg = callPackage ../applications/science/logic/netlistsvg { };
  netpbm = callPackage ../tools/graphics/netpbm { };
  netproc = callPackage ../tools/networking/netproc { };