From 7f523e7e50e3b52086cf6f5e4eda8aa7f2aa2840 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 24 Aug 2018 19:03:25 +0800 Subject: [PATCH] nix: add shell starter --- nix/shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nix/shell.nix diff --git a/nix/shell.nix b/nix/shell.nix new file mode 100644 index 000000000..8fbdadb65 --- /dev/null +++ b/nix/shell.nix @@ -0,0 +1,8 @@ +{system ? builtins.currentSystem}: +let + pkgs = import {inherit system;}; + artiq = pkgs.callPackage ./default.nix {}; +in +pkgs.mkShell { + buildInputs = [ artiq ]; +}