mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
9a624d10e3
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
32 lines
748 B
Nix
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";
|
|
};
|
|
}
|