From a354028b6a2c3bd2b7adb5501bf8eb27a2deb88a Mon Sep 17 00:00:00 2001 From: Leon van Kammen Date: Mon, 1 Sep 2025 17:55:24 +0200 Subject: [PATCH] fix nix deps --- shell.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 8e599af..b141d59 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,14 @@ -{ pkgs ? import {} }: +{ pkgs ? import {} } : +{ - pkgs.mkShell { + pkgs = import (builtins.fetchGit { + name = "nixos-23.05"; + url = "https://github.com/nixos/nixpkgs/"; + ref = "refs/heads/nixos-unstable"; + rev = "ef99fa5c5ed624460217c31ac4271cfb5cb2502c"; + }); + + foo = pkgs.mkShell { # nativeBuildInputs is usually what you want -- tools you need to run nativeBuildInputs = with pkgs.buildPackages; [ @@ -17,6 +25,7 @@ echo -e "\n run: './make build' to build all (haxe parser + js)\n" echo -e "\n run: './make build javascript' to build js\n" ''; + }; }