From 18bae3abd9e674e31e97ac8790eafb4f5b85647c Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Fri, 7 Mar 2025 14:03:14 +0100 Subject: [PATCH] Revert "flake-update: Get the nixpkgs/lib subtree only" This reverts commit e807eea9e845afc954ee189e8d3f57de67d7156f. --- dev/flake-module.nix | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/dev/flake-module.nix b/dev/flake-module.nix index 30ee2c0..88078ee 100644 --- a/dev/flake-module.nix +++ b/dev/flake-module.nix @@ -15,32 +15,6 @@ "." = { }; "dev" = { }; }; - effect.settings = { - # Only fetch the `lib` subtree. - # NOTE: Users don't have to do this. They are recommended to use follows - # and just use the `nixpkgs` they're already fetching anyway. - # It doesn't have to be `lib/` only! - git.update.script = lib.mkBefore '' - echo 'Fetching nixpkgs-lib tree' - branch="nixos-unstable" - mkdir ~/nixpkgs - git -C ~/nixpkgs init - git -C ~/nixpkgs remote add origin https://github.com/NixOS/nixpkgs.git - git -C ~/nixpkgs fetch origin --filter=blob:none --depth=1 "$branch" - commit="$(git -C ~/nixpkgs rev-parse FETCH_HEAD)" - tree="$(git -C ~/nixpkgs rev-parse FETCH_HEAD:lib)" - - echo 'Adjusting nixpkgs-lib.url' - sed -i flake.nix -e \ - 's^ nixpkgs-lib\.url = ".*^ nixpkgs-lib\.url = "https://github.com/NixOS/nixpkgs/archive/'$tree'.tar.gz"; # '$commit' /lib from '$branch'^' - git diff - grep -F "$tree" flake.nix >/dev/null || { - echo 'failed to write new tree to flake.nix' - exit 1 - } - git commit flake.nix -m 'flake.nix: Update nixpkgs-lib tree' - ''; - }; }; perSystem = { config, pkgs, ... }: {