about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/netlistsvg/default.nix
blob: 8458d63f03bb0c445187676a16635a583427e647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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://github.com/nturley/netlistsvg";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ pbsds ];
  };
}