artiq-full: work around https://github.com/NixOS/nixpkgs/pull/85763
This commit is contained in:
parent
c4eae355d3
commit
ced0ef13b3
|
@ -1,4 +1,14 @@
|
|||
{ pkgs ? import <nixpkgs> {}}:
|
||||
{ pkgs ? import <nixpkgs> { overlays = [
|
||||
(
|
||||
self: super: {
|
||||
python3 = super.python3.override {
|
||||
packageOverrides = self: super: {
|
||||
svgwrite = super.svgwrite.overrideAttrs(oa: {meta = {};});
|
||||
};
|
||||
};
|
||||
}
|
||||
)
|
||||
]; }}:
|
||||
|
||||
let
|
||||
sinaraSystemsSrc = <sinaraSystemsSrc>;
|
||||
|
|
Loading…
Reference in New Issue