We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13822a3 commit 71fdf86Copy full SHA for 71fdf86
data-raw/shell.nix
@@ -0,0 +1,14 @@
1
+# Install the nix package manager if it is not available: https://nixos.org/download/#download-nix
2
+# This nix shell definition lets you run 'cue' version 0.8.2 under go version go1.22.8 in a nix shell.
3
+# Start it by running 'nix-shell' in this folder.
4
+
5
+let
6
+ nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
7
+ pkgs = import nixpkgs { config = {}; overlays = []; };
8
+in
9
10
+pkgs.mkShellNoCC {
11
+ packages = with pkgs; [
12
+ cue
13
+ ];
14
+}
0 commit comments