diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index a589fff0f1bc..ade972259ced 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10708,6 +10708,12 @@ fingerprint = "48AD DE10 F27B AFB4 7BB0 CCAF 2D25 95A0 0D08 ACE0"; }]; }; + posch = { + email = "tp@fonz.de"; + github = "posch"; + githubId = 146413; + name = "Tobias Poschwatta"; + }; ppenguin = { name = "Jeroen Versteeg"; email = "hieronymusv@gmail.com"; diff --git a/pkgs/tools/networking/hostname-debian/default.nix b/pkgs/tools/networking/hostname-debian/default.nix new file mode 100644 index 000000000000..07135b35cc53 --- /dev/null +++ b/pkgs/tools/networking/hostname-debian/default.nix @@ -0,0 +1,28 @@ +{ stdenv, lib, fetchurl }: + +stdenv.mkDerivation rec { + pname = "hostname-debian"; + version = "3.23"; + + src = fetchurl { + url = "https://deb.debian.org/debian/pool/main/h/hostname/hostname_${version}.tar.gz"; + sha256 = "sha256-vG0ZVLIoSYaf+LKmAuOfCLFwL2htS1jdeSfN61tIdu8="; + }; + + postPatch = '' + substituteInPlace Makefile --replace 'install -o root -g root' 'install' + ''; + makeFlags = [ "BINDIR=$(out)/bin" "MANDIR=$(out)/share/man" ]; + + meta = with lib; { + description = "Utility to set/show the host name or domain name"; + longDescription = '' + This package provides commands which can be used to display the system's + DNS name, and to display or set its hostname or NIS domain name. + ''; + homepage = "https://tracker.debian.org/pkg/hostname"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ posch ]; + platforms = platforms.gnu; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f82eec31fbec..b7115d92ea60 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7519,6 +7519,8 @@ with pkgs; hostess = callPackage ../development/tools/hostess {}; + hostname-debian = callPackage ../tools/networking/hostname-debian { }; + hotpatch = callPackage ../development/libraries/hotpatch { }; hotspot = libsForQt5.callPackage ../development/tools/analysis/hotspot { };