commit f656b7fc8f8fefe48e3a075f18388cfbb1caaaec
parent 9841df93ecc75244281835734cb68f2fa9d65d76
Author: William Casarin <jb55@jb55.com>
Date: Thu, 18 Dec 2025 10:07:46 -0800
nix: pin nixpkgs
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/shell.nix b/shell.nix
@@ -1,4 +1,5 @@
-{ pkgs ? import <nixpkgs> {} }:
+{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/1306659b587dc277866c7b69eb97e5f07864d8c4.tar.gz") {} }:
+
with pkgs;
mkShell {
nativeBuildInputs = [ libiconv pkg-config fontconfig freetype openssl ];