diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-06-11 20:12:29 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-06-11 20:12:29 -0600 |
| commit | 07bf05a7869c88c27912833c1db942f8fc849f4d (patch) | |
| tree | b32a11e146884bcee04ef2dd5702b45e89699424 /pkgs/default.nix | |
| parent | 905a306a705fc7bf9f0d03945bfe692c530dd05e (diff) | |
pkgs: add existing derivations written for other projects
Diffstat (limited to '')
| -rw-r--r-- | pkgs/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 2a40577..97fff36 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -24,4 +24,16 @@ in }) ]; }; + + override = { + python3 = prev.python3.override { + packageOverrides = nextPy: prevPy: { + cocotb = nextPy.callPackage ./cocotb { inherit (prevPy) cocotb; }; + cocotbext-wishbone = nextPy.callPackage ./cocotb/exts/wishbone.nix { }; + find-libpython = nextPy.callPackage ./find-libpython.nix { }; + hdl-convertor = nextPy.callPackage ./hdl-convertor { }; + hdl-convertor-ast = nextPy.callPackage ./hdl-convertor/ast.nix { }; + }; + }; + }; } |
