mirror of
https://github.com/m-labs/artiq.git
synced 2025-01-23 09:06:42 +08:00
nix: add shell starter
This commit is contained in:
parent
23ea8c81f3
commit
7f523e7e50
8
nix/shell.nix
Normal file
8
nix/shell.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{system ? builtins.currentSystem}:
|
||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> {inherit system;};
|
||||||
|
artiq = pkgs.callPackage ./default.nix {};
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = [ artiq ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user