gawkInteractive: remove appendToName to have a consistent package name for repology

main
Felix Buehler 2 years ago
parent 19d43bf8f6
commit 564b9a8252
  1. 2
      pkgs/tools/text/gawk/default.nix
  2. 3
      pkgs/top-level/all-packages.nix

@ -16,7 +16,7 @@
assert (doCheck && stdenv.isLinux) -> glibcLocales != null;
stdenv.mkDerivation rec {
pname = "gawk";
pname = "gawk" + lib.optionalString interactive "-interactive";
version = "5.1.1";
src = fetchurl {

@ -5681,8 +5681,7 @@ with pkgs;
};
gawkextlib = callPackage ../tools/text/gawk/gawkextlib.nix {};
gawkInteractive = appendToName "interactive"
(gawk.override { interactive = true; });
gawkInteractive = gawk.override { interactive = true; };
gawp = callPackage ../tools/misc/gawp { };

Loading…
Cancel
Save