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.
23 lines
684 B
23 lines
684 B
{ stdenv, fetchgit, python3Packages, nmigen, git }: |
|
|
|
python3Packages.buildPythonPackage { |
|
name = "nmigen-boards"; |
|
version = "2019-10-13"; |
|
|
|
src = fetchgit { |
|
url = "https://github.com/m-labs/nmigen-boards"; |
|
rev = "bc074915d6c67a33447d4730b720b37e3ea4bb3f"; |
|
sha256 = "1qp32783p0bg6fxfj0wd7fd3if8az7w1r521wcbznxakdrqhrqjd"; |
|
leaveDotGit = true; |
|
}; |
|
|
|
nativeBuildInputs = [ python3Packages.setuptools_scm git ]; |
|
propagatedBuildInputs = [ nmigen ]; |
|
|
|
meta = with stdenv.lib; { |
|
description = "Board and connector definition files for nMigen"; |
|
homepage = "https://m-labs.hk"; |
|
license = licenses.bsd2; |
|
maintainers = [ maintainers.sb0 ]; |
|
}; |
|
}
|
|
|