From 344a6bb3a0cce1fdc06ca915a695ff48bba71e40 Mon Sep 17 00:00:00 2001
From: Julien Malka <julien@malka.sh>
Date: Tue, 10 Sep 2024 15:15:06 +0200
Subject: [PATCH] chore: drop useless script

---
 scripts/update-deps.nix | 11 -----------
 shell.nix               |  2 --
 2 files changed, 13 deletions(-)
 delete mode 100644 scripts/update-deps.nix

diff --git a/scripts/update-deps.nix b/scripts/update-deps.nix
deleted file mode 100644
index c1203a7..0000000
--- a/scripts/update-deps.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ writeShellApplication, npins }:
-
-writeShellApplication {
-  name = "update-deps";
-
-  runtimeInputs = [ npins ];
-
-  text = ''
-    npins update -d deps "$@"
-  '';
-}
diff --git a/shell.nix b/shell.nix
index 5fcd35a..5a8af64 100644
--- a/shell.nix
+++ b/shell.nix
@@ -4,7 +4,6 @@ let
   nixos-anywhere = pkgs.callPackage "${inputs.nixos-anywhere}/src/default.nix" { };
   agenix = pkgs.callPackage "${inputs.agenix}/pkgs/agenix.nix" { };
   bootstrap = pkgs.callPackage scripts/bootstrap-machine.nix { inherit nixos-anywhere; };
-  update-deps = pkgs.callPackage scripts/update-deps.nix { };
   lon = pkgs.callPackage "${inputs.lon}/nix/packages/lon.nix" { };
   pre-commit-hook =
     (import (
@@ -35,7 +34,6 @@ pkgs.mkShell {
     pkgs.npins
     agenix
     bootstrap
-    update-deps
     pkgs.statix
     lon
   ];