artiq/nix/shell.nix

9 lines
176 B
Nix
Raw Normal View History

2018-08-24 19:03:25 +08:00
{system ? builtins.currentSystem}:
let
pkgs = import <nixpkgs> {inherit system;};
artiq = pkgs.callPackage ./default.nix {};
in
pkgs.mkShell {
buildInputs = [ artiq ];
}