mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
wol: init at 0.7.1
wol, unlike wakelan, supports wake-on-lan passwords
This commit is contained in:
parent
90e9ad2106
commit
16547d49da
22
pkgs/tools/networking/wol/default.nix
Normal file
22
pkgs/tools/networking/wol/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wol-${version}";
|
||||
version = "0.7.1";
|
||||
proj = "wake-on-lan";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/${proj}/${name}.tar.gz";
|
||||
sha256 = "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Implements Wake On LAN functionality in a small program";
|
||||
homepage = https://sourceforge.net/projects/wake-on-lan/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
||||
};
|
||||
}
|
@ -4175,6 +4175,8 @@ in
|
||||
|
||||
wml = callPackage ../development/web/wml { };
|
||||
|
||||
wol = callPackage ../tools/networking/wol { };
|
||||
|
||||
wring = nodePackages.wring;
|
||||
|
||||
wrk = callPackage ../tools/networking/wrk { };
|
||||
|
Loading…
Reference in New Issue
Block a user