From 953ace12e00a206a23cce1e6275ed417e0e21ba7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 19 Feb 2019 11:35:12 +0800 Subject: [PATCH] simplify shell.nix --- artiq/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/shell.nix b/artiq/shell.nix index edf5ade..0f14cc3 100644 --- a/artiq/shell.nix +++ b/artiq/shell.nix @@ -4,5 +4,5 @@ let artiqpkgs = import ./default.nix { inherit pkgs; }; in pkgs.mkShell { - buildInputs = with artiqpkgs; [ binutils-or1k llvm-or1k llvmlite-artiq artiq ]; + buildInputs = [ (pkgs.python3.withPackages(ps: [artiqpkgs.artiq])) ]; }