overlays: remove wf-recorder, fix is in nixpkgs

This commit is contained in:
teutat3s 2024-11-07 09:07:45 +01:00
parent f795bac18d
commit c5703f64dc
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 0 additions and 13 deletions

View file

@ -37,7 +37,6 @@
(import ./nix-index.nix) (import ./nix-index.nix)
(import ./prr.nix) (import ./prr.nix)
(import ./neovim-plugins.nix) (import ./neovim-plugins.nix)
(import ./wf-recorder.nix)
]; ];
} }
); );

View file

@ -1,12 +0,0 @@
final: prev: {
wf-recorder = prev.wf-recorder.overrideAttrs (oldAttrs: rec {
inherit (oldAttrs) pname;
src = prev.fetchFromGitHub {
owner = "ammen99";
repo = pname;
rev = "560bb92d3ddaeb31d7af77d22d01b0050b45bebe";
hash = "sha256-goWNRg286Cp6UUqyJyqk7UysumMCt9GtNpF7O5ahKtI=";
};
version = "unstable-2024-11-05";
});
}