You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
372 B
16 lines
372 B
{ stdenv, python3Packages, nmigen }: |
|
|
|
python3Packages.buildPythonPackage { |
|
name = "heavycomps"; |
|
|
|
src = ./heavycomps; |
|
|
|
propagatedBuildInputs = [ nmigen ]; |
|
|
|
meta = with stdenv.lib; { |
|
description = "Components for the HeavyX SoC toolkit"; |
|
homepage = "https://m-labs.hk/migen"; |
|
license = licenses.bsd2; |
|
maintainers = [ maintainers.sb0 ]; |
|
}; |
|
}
|
|
|