35d79c7666
The `pod_spell` test needed to be patched out, as it isn't relevant to packaging and is missing a dependency to run. Removing it allows the rest of the tests to be ran for this package.
36 lines
948 B
Nix
36 lines
948 B
Nix
{ lib, perlPackages, fetchFromGitHub, installShellFiles }:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "wakeonlan";
|
|
version = "0.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpoliv";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zCOpp5iNrWwh2knBGWhiEyG9IPAnFRwH5jJLEVLBISM=";
|
|
};
|
|
|
|
outputs = [ "out" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
checkInputs = [ perlPackages.TestPerlCritic perlPackages.TestPod perlPackages.TestPodCoverage ];
|
|
# Linting and formatting checks are of no interest for us.
|
|
preCheck = ''
|
|
rm -f t/93_pod_spell.t
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dt $out/bin wakeonlan
|
|
installManPage blib/man1/wakeonlan.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Perl script for waking up computers via Wake-On-LAN magic packets";
|
|
homepage = "https://github.com/jpoliv/wakeonlan";
|
|
license = licenses.artistic1;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|