groovylight/litex/litex.nix

33 lines
462 B
Nix
Raw Normal View History

2024-04-19 15:13:39 +00:00
tag: {
pkgs
, lib
, buildPythonPackage
, pyserial
, migen
, requests
, packaging
, pexpect
}: buildPythonPackage {
pname = "litex";
version = "${tag}";
src = pkgs.fetchFromGitHub {
owner = "enjoy-digital";
repo = "litex";
rev = "${tag}";
hash = "sha256-OcwqYLQ7ec2vTewdIJqP/aTCJ4yI43OIOkTMD/hIKO0=";
};
buildInputs = [
migen
];
propagatedBuildInputs = [
requests
pyserial
packaging
];
doCheck = false;
}