nix-scripts/artiq-fast/shell.nix

9 lines
189 B
Nix
Raw Permalink Normal View History

{ pkgs ? import <nixpkgs> {}}:
let
artiqpkgs = import ./default.nix { inherit pkgs; };
in
pkgs.mkShell {
2019-02-19 11:35:12 +08:00
buildInputs = [ (pkgs.python3.withPackages(ps: [artiqpkgs.artiq])) ];
}