overlays: Remove ripgrep

Not needed anymore since nixos-unstable has 14.0.3.
This commit is contained in:
Donovan Glover 2023-12-13 05:43:07 -05:00
parent e16c8f1906
commit 442bdbcbe7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 23 deletions

View File

@ -2,7 +2,6 @@
imports = [
./alejandra.nix
./eza.nix
./ripgrep.nix
./zola.nix
];
}

View File

@ -1,22 +0,0 @@
{
nixpkgs.overlays = [
(final: prev: {
ripgrep = prev.ripgrep.overrideAttrs (oldAttrs: rec {
version = "14.0.3";
src = prev.fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
rev = version;
hash = "sha256-NBGbiy+1AUIBJFx6kcGPSKo08a+dkNo4rNH2I1pki4U=";
};
cargoDeps = oldAttrs.cargoDeps.overrideAttrs (prev.lib.const {
name = "ripgrep-vendor.tar.gz";
inherit src;
outputHash = "sha256-ptWXv4MKM3M4KcFqI0v9LScMBRHkwzvDOVbLxyJtHFU=";
});
});
})
];
}