wakeonlan: init at 0.41
This commit is contained in:
parent
5852a21819
commit
6dacf11bbe
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/networking/wakeonlan/default.nix
Normal file
29
pkgs/tools/networking/wakeonlan/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, perlPackages, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
|
perlPackages.buildPerlPackage rec {
|
||||||
|
pname = "wakeonlan";
|
||||||
|
version = "0.41";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jpoliv";
|
||||||
|
repo = pname;
|
||||||
|
rev = "wakeonlan-${version}";
|
||||||
|
sha256 = "0m48b39lz0yc5ckx2jx8y2p4c8npjngxl9wy86k43xgsd8mq1g3c";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dt $out/bin wakeonlan
|
||||||
|
installManPage blib/man1/wakeonlan.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Perl script for waking up computers via Wake-On-LAN magic packets";
|
||||||
|
homepage = "https://github.com/jpoliv/wakeonlan";
|
||||||
|
license = licenses.artistic1;
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3835,6 +3835,8 @@ in
|
||||||
|
|
||||||
utahfs = callPackage ../applications/networking/utahfs { };
|
utahfs = callPackage ../applications/networking/utahfs { };
|
||||||
|
|
||||||
|
wakeonlan = callPackage ../tools/networking/wakeonlan { };
|
||||||
|
|
||||||
wallutils = callPackage ../tools/graphics/wallutils { };
|
wallutils = callPackage ../tools/graphics/wallutils { };
|
||||||
|
|
||||||
wayland-utils = callPackage ../tools/wayland/wayland-utils { };
|
wayland-utils = callPackage ../tools/wayland/wayland-utils { };
|
||||||
|
|
Loading…
Reference in a new issue