remove dead code with deadnix

This commit is contained in:
Noah Masur
2023-02-20 20:45:56 -05:00
parent cc84f1d37a
commit 450118d234
21 changed files with 29 additions and 29 deletions

View File

@ -1,6 +1,6 @@
# Fix: https://github.com/janeczku/calibre-web/issues/2422
final: prev: {
_final: prev: {
calibre-web = prev.calibre-web.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ./calibre-web-cloudflare.patch ];
});

View File

@ -1,18 +1,18 @@
# Adopted from here: https://github.com/DieracDelta/vimconfig/blob/801b62dd56cfee59574639904a6c95b525725f66/plugins.nix
inputs: final: prev:
inputs: _final: prev:
let
# Use nixpkgs vimPlugin but with source directly from plugin author
withSrc = pkg: src: pkg.overrideAttrs (_: { inherit src; });
# Package plugin
plugin = pname: src:
prev.vimUtils.buildVimPluginFrom2Nix {
inherit pname src;
version = "master";
};
# Package plugin - disabling until in use
# plugin = pname: src:
# prev.vimUtils.buildVimPluginFrom2Nix {
# inherit pname src;
# version = "master";
# };
in {