mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
61f0a17d3c
The iverilog project is commonly known as ... iverilog, not verilog. The package name `verilog` so far has been confusing, rename to `iverilog`. While doing so, move the package to the new by-name/ convention directory. Fix all the fall-out of packages that referred to the old name.
40 lines
879 B
Nix
40 lines
879 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, lib
|
|
, iverilog
|
|
, verilator
|
|
, gnumake
|
|
, edalize
|
|
, fastjsonschema
|
|
, pyparsing
|
|
, pyyaml
|
|
, simplesat
|
|
, ipyxact
|
|
, setuptools-scm
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "fusesoc";
|
|
version = "2.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-M36bXBgY8hR33AVDlHoH8PZJG2Bi0KOEI07IMns7R4w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [ edalize fastjsonschema pyparsing pyyaml simplesat ipyxact ];
|
|
|
|
pythonImportsCheck = [ "fusesoc" ];
|
|
|
|
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ iverilog verilator gnumake ]}"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/olofk/fusesoc";
|
|
description = "Package manager and build tools for HDL code";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.bsd3;
|
|
mainProgram = "fusesoc";
|
|
};
|
|
}
|