2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchurl, perl }:
|
2016-09-28 13:33:46 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-27 12:22:13 +03:00
|
|
|
pname = "wol";
|
2016-09-28 13:33:46 +03:00
|
|
|
version = "0.7.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-27 12:22:13 +03:00
|
|
|
url = "mirror://sourceforge/wake-on-lan/${pname}-${version}.tar.gz";
|
2016-09-28 13:33:46 +03:00
|
|
|
sha256 = "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270";
|
|
|
|
};
|
|
|
|
|
2019-04-27 12:22:13 +03:00
|
|
|
# for pod2man in order to get a manpage
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2016-09-28 13:33:46 +03:00
|
|
|
description = "Implements Wake On LAN functionality in a small program";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://sourceforge.net/projects/wake-on-lan/";
|
2019-04-27 12:22:13 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ makefu ];
|
|
|
|
platforms = platforms.linux;
|
2016-09-28 13:33:46 +03:00
|
|
|
};
|
|
|
|
}
|