Skip to content

Commit

Permalink
NOMERGE: fetch my clisp using FOD to allow caching
Browse files Browse the repository at this point in the history
  • Loading branch information
hraban committed Oct 16, 2023
1 parent 766184a commit 51bbbec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
with pkgs.lib;

let
pkgs' = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/pull/261280/head.tar.gz") { # NOCOMMIT
pkgs' = import (pkgs.fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "9fd11c68d731289f86938c168065c8675c674089";
hash = "sha256-19sco110ACPniXK7PSyIKGLhKbcloONovDzF1dkg5xM";
}) {
overlays = [ (import cl-nix-lite) ];
};
sbcl = f: "${pkgs.sbcl}/bin/sbcl --dynamic-space-size 4000 --script ${f}";
Expand Down

0 comments on commit 51bbbec

Please sign in to comment.