nixpkgs/pkgs/tools/networking/wakelan/default.nix
Anderson Torres 9a624d10e3 treewide: remove viric from meta.maintainers [orphans]
Since theey is not active from at least six years.

All the packages on this commit became orphans.

---------------------------------------------------------------------------
There are files not covered by this commit, because they will be adopted
soon. Namely:

- pkgs/by-name/zs/zsync/package.nix
- pkgs/games/bsdgames/default.nix
- pkgs/misc/ghostscript/default.nix
- pkgs/os-specific/linux/kernel/perf/default.nix
- pkgs/tools/system/logrotate/default.nix
2024-07-28 11:48:51 -03:00

32 lines
748 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "wakelan";
version = "1.1";
src = fetchurl {
url = "mirror://ibiblioPubLinux/system/network/misc/${pname}-${version}.tar.gz";
hash = "sha256-PfXrj4d2SHmatiPPFxjsxvhusML1HTRNjoYEQtzFzW8=";
};
# code predates c99
env.CFLAGS = "-std=c89";
preInstall = ''
mkdir -p $out/man/man1 $out/bin
'';
meta = {
description = "Send a wake-on-lan packet";
longDescription = ''
WakeLan sends a properly formatted UDP packet across the
network which will cause a wake-on-lan enabled computer to
power on.
'';
license = lib.licenses.gpl2Plus;
maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "wakelan";
};
}