summary refs log blame commit diff
path: root/pkgs/tools/networking/wol/default.nix
blob: 114a8457d5b2c475f453f1cf980d36e3fb4bf176 (plain) (tree)
1
2
3
4
5
6
7
8
                                

                         
                
                    

                  
                                                                        


                                                                    




                                         
                    
                                                                            
                                                               


                                               

    
{ lib, stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  pname = "wol";
  version = "0.7.1";

  src = fetchurl {
    url = "mirror://sourceforge/wake-on-lan/${pname}-${version}.tar.gz";
    sha256 = "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270";
  };

  # for pod2man in order to get a manpage
  nativeBuildInputs = [ perl ];

  enableParallelBuilding = true;

  meta = with lib; {
    description = "Implements Wake On LAN functionality in a small program";
    homepage = "https://sourceforge.net/projects/wake-on-lan/";
    license = licenses.gpl2;
    maintainers = with maintainers; [ makefu ];
    platforms = platforms.linux;
  };
}