From 3895812262e3334fa22a1182fd51adf1721822eb Mon Sep 17 00:00:00 2001 From: nixinator <33lockdown33@protonmail.com> Date: Thu, 2 Dec 2021 18:23:27 +0000 Subject: [PATCH] add a shell.nix to bring a pinned nixops --- shell.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3a9fc2c --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +#nixops broke in unstable for a little bit +#so a handy shell.nix to bring a 21.05 that works +#https://github.com/NixOS/nixpkgs/issues/147034 + + +#with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {}); +with (import (fetchTarball https://github.com/NixOS/nixpkgs/archive/refs/tags/21.05.tar.gz) {}); +mkShell { + buildInputs = [ + nixops + ]; +}