16547d49da
wol, unlike wakelan, supports wake-on-lan passwords
23 lines
607 B
Nix
23 lines
607 B
Nix
{ 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 ];
|
|
};
|
|
}
|