mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
41 lines
808 B
Nix
41 lines
808 B
Nix
{ lib
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, rinetd
|
|
, stdenv
|
|
, testers
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rinetd";
|
|
version = "0.73";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samhocevar";
|
|
repo = "rinetd";
|
|
rev = "v${version}";
|
|
hash = "sha256-W8PLGd3RwmBTh1kw3k8+ZfP6AzRhZORCkxZzQ9ZbPN4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
preConfigure = ''
|
|
./bootstrap
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = rinetd;
|
|
command = "rinetd --version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "TCP/UDP port redirector";
|
|
homepage = "https://github.com/samhocevar/rinetd";
|
|
changelog = "https://github.com/samhocevar/rinetd/blob/${src.rev}/CHANGES.md";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
mainProgram = "rinetd";
|
|
};
|
|
}
|