rename+alias finger_bsd to bsd-finger

This commit is contained in:
AndersonTorres 2022-03-14 12:53:58 -03:00
parent bf2d8ef550
commit 0562c75f4a
2 changed files with 4 additions and 2 deletions

View File

@ -320,6 +320,8 @@ mapAliases ({
fedora-coreos-config-transpiler = throw "fedora-coreos-config-transpiler has been renamed to 'butane'."; # Added 2021-04-13
fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H.";
ffadoFull = throw "'ffadoFull' has been renamed to/replaced by 'ffado'"; # Converted to throw 2022-02-22
finger_bsd = bsd-finger;
fingerd_bsd = bsd-fingerd;
firefox-esr-68 = throw "Firefox 68 ESR was removed because it reached end of life with its final release 68.12esr on 2020-08-25.";
firefox-esr-wrapper = throw "'firefox-esr-wrapper' has been renamed to/replaced by 'firefox-esr'"; # Converted to throw 2022-02-22
firefoxWrapper = throw "'firefoxWrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22

View File

@ -5475,8 +5475,8 @@ with pkgs;
findutils = callPackage ../tools/misc/findutils { };
finger_bsd = callPackage ../tools/networking/bsd-finger { };
fingerd_bsd = finger_bsd.override({ buildClient = false; });
bsd-finger = callPackage ../tools/networking/bsd-finger { };
bsd-fingerd = bsd-finger.override({ buildClient = false; });
iprange = callPackage ../applications/networking/firehol/iprange.nix {};