From 623cfffb6a8a4281dcbe7f61215fff987cea8ee9 Mon Sep 17 00:00:00 2001 From: xecarlox94 Date: Sat, 31 May 2025 00:05:04 +0100 Subject: [PATCH] another attempt to test bootstrapping --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 082f099..4273afd 100644 --- a/flake.nix +++ b/flake.nix @@ -26,8 +26,6 @@ }: let - # TODO: merge overlays into a list - # TODO: create default file in overlays folder to merge all overlays bindingsOverlay = import ./nix/overlays/bindings.nix; coreOverlay = (final: prev: { p2prc = final.callPackage ./. { }; @@ -78,15 +76,17 @@ '' cabal init + # TODO: remove reference to cabal file sed -i 's/base.*$/base, p2prc/' test-flake-template.cabal cabal2nix . > ./cabal.nix; + # TODO: remove reference to nix branch nix flake init -t github:xecarlox94/p2p-rendering-computation?ref=nix#haskell + + git add . ''; }; - - } )) // {