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

This commit is contained in:
Felix Buehler 2022-02-21 22:54:09 +01:00
parent 19d43bf8f6
commit 564b9a8252
2 changed files with 2 additions and 3 deletions

View file

@ -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 {

View file

@ -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 { };