1 { lib, stdenv, fetchurl, perl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/wake-on-lan/${pname}-${version}.tar.gz";
9 sha256 = "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270";
12 # for pod2man in order to get a manpage
13 nativeBuildInputs = [ perl ];
15 enableParallelBuilding = true;
18 description = "Implements Wake On LAN functionality in a small program";
19 homepage = "https://sourceforge.net/projects/wake-on-lan/";
20 license = licenses.gpl2Plus;
21 maintainers = with maintainers; [ makefu ];
23 platforms = platforms.linux;