mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 09:02:46 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{ fetchgit, lib, stdenv, pkgconfig, libnsl, libtirpc, autoreconfHook
|
|
, useSystemd ? true, systemd }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rpcbind";
|
|
version = "1.2.5";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
|
|
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
|
|
sha256 = "1k5rr0pia70ifyp877rbjdd82377fp7ii0sqvv18qhashr6489va";
|
|
};
|
|
|
|
patches = [
|
|
./sunrpc.patch
|
|
];
|
|
|
|
buildInputs = [ libnsl libtirpc ]
|
|
++ stdenv.lib.optional useSystemd systemd;
|
|
|
|
configureFlags = [
|
|
"--with-systemdsystemunitdir=${if useSystemd then "${placeholder "out"}/etc/systemd/system" else "no"}"
|
|
"--enable-warmstarts"
|
|
"--with-rpcuser=rpc"
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|