mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 14:43:37 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ fetchgit, lib, stdenv, pkg-config, libnsl, libtirpc, autoreconfHook
|
|
, useSystemd ? true, systemd }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rpcbind";
|
|
version = "1.2.6";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
|
|
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
|
|
hash = "sha256-aidETIZaQYzC3liDGM915wyBWpMrn4OudxEcFS/Iucw=";
|
|
};
|
|
|
|
patches = [
|
|
./sunrpc.patch
|
|
];
|
|
|
|
buildInputs = [ libnsl libtirpc ]
|
|
++ lib.optional useSystemd systemd;
|
|
|
|
configureFlags = [
|
|
"--with-systemdsystemunitdir=${if useSystemd then "${placeholder "out"}/etc/systemd/system" else "no"}"
|
|
"--enable-warmstarts"
|
|
"--with-rpcuser=rpc"
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "ONC RPC portmapper";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
homepage = "https://linux-nfs.org/";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
longDescription = ''
|
|
Universal addresses to RPC program number mapper.
|
|
'';
|
|
};
|
|
}
|