gawkInteractive: remove appendToName to have a consistent package name for repology
This commit is contained in:
parent
19d43bf8f6
commit
564b9a8252
2 changed files with 2 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
assert (doCheck && stdenv.isLinux) -> glibcLocales != null;
|
assert (doCheck && stdenv.isLinux) -> glibcLocales != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gawk";
|
pname = "gawk" + lib.optionalString interactive "-interactive";
|
||||||
version = "5.1.1";
|
version = "5.1.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
|
|
@ -5681,8 +5681,7 @@ with pkgs;
|
||||||
};
|
};
|
||||||
gawkextlib = callPackage ../tools/text/gawk/gawkextlib.nix {};
|
gawkextlib = callPackage ../tools/text/gawk/gawkextlib.nix {};
|
||||||
|
|
||||||
gawkInteractive = appendToName "interactive"
|
gawkInteractive = gawk.override { interactive = true; };
|
||||||
(gawk.override { interactive = true; });
|
|
||||||
|
|
||||||
gawp = callPackage ../tools/misc/gawp { };
|
gawp = callPackage ../tools/misc/gawp { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue