summaryrefslogtreecommitdiff
path: root/pkgs/static
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-07-21 18:43:03 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2025-07-21 18:48:06 +0200
commit19fd7ceec84cefaea8a9aa24e7672e2c054a8edb (patch)
treeb6c4900e11d191df04b746066c639ad0df2848f3 /pkgs/static
parent134e1c1847e87ce0ca63060d39b79febe919940b (diff)
pkgs: gitignore: change source repo
Diffstat (limited to 'pkgs/static')
-rw-r--r--pkgs/static/gitignore/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/static/gitignore/default.nix b/pkgs/static/gitignore/default.nix
index 94b3702..d97dec5 100644
--- a/pkgs/static/gitignore/default.nix
+++ b/pkgs/static/gitignore/default.nix
@@ -7,17 +7,17 @@
}:
stdenvNoCC.mkDerivation {
name = lib.concatStringsSep "+" templates + ".gitignore";
- version = "2023-06-30";
+ version = "2025-07-20";
src = fetchFromGitHub {
- owner = "toptal";
+ owner = "github";
repo = "gitignore";
- rev = "0a7fb01801c62ca53ab2dcd73ab96185e159e864";
- hash = "sha256-tZ+hlpt7T1by3f9BxzakjpQr+Y4top570J58q8VP9YE=";
+ rev = "9c2e50c7ccbf2f367f44e3c93e83934d12d67611";
+ hash = "sha256-Zo0eOiCH6NWSjO1mm8KhoNDxQePb15dVKhxvQ62alyQ=";
};
buildPhase = ''
- cd templates
+ mv {Global,community}/*.gitignore .
for file in ${lib.concatStringsSep " " (builtins.map (name: lib.escapeShellArg "${name}.gitignore") templates)}
do
echo "### $(basename "$file" .gitignore)" >> $out