From ced0ef13b3f2d7b4931f378590de8b5715b9df06 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 26 May 2020 15:32:26 +0800 Subject: [PATCH] artiq-full: work around https://github.com/NixOS/nixpkgs/pull/85763 --- artiq-full.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/artiq-full.nix b/artiq-full.nix index 8f30f9e..2c59154 100644 --- a/artiq-full.nix +++ b/artiq-full.nix @@ -1,4 +1,14 @@ -{ pkgs ? import {}}: +{ pkgs ? import { overlays = [ + ( + self: super: { + python3 = super.python3.override { + packageOverrides = self: super: { + svgwrite = super.svgwrite.overrideAttrs(oa: {meta = {};}); + }; + }; + } + ) + ]; }}: let sinaraSystemsSrc = ;