Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
runCommandLocal,
|
|
netlistsvg,
|
|
yosys,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "netlistsvg";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nturley";
|
|
repo = "netlistsvg";
|
|
tag = "v${version}";
|
|
hash = "sha256-H37zhjfv7c/TV+pAk70eDiE6ZQ9JjZq1TFvac6OOKBk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
cp ${./package-lock.json} ./package-lock.json
|
|
'';
|
|
|
|
npmDepsHash = "sha256-Vs0RLj6ySkM5oQsBGv4MmgiIBMhiDhINpwuCBJH9L8s=";
|
|
|
|
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 ];
|
|
};
|
|
}
|