mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
overlays: Remove ripgrep
Not needed anymore since nixos-unstable has 14.0.3.
This commit is contained in:
parent
e16c8f1906
commit
442bdbcbe7
@ -2,7 +2,6 @@
|
||||
imports = [
|
||||
./alejandra.nix
|
||||
./eza.nix
|
||||
./ripgrep.nix
|
||||
./zola.nix
|
||||
];
|
||||
}
|
||||
|
@ -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=";
|
||||
});
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user