mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 00:04:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, perlPackages, fetchFromGitHub, installShellFiles, shortenPerlShebang }:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "wakeonlan";
|
|
version = "0.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpoliv";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zCOpp5iNrWwh2knBGWhiEyG9IPAnFRwH5jJLEVLBISM=";
|
|
};
|
|
|
|
outputs = [ "out" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optional stdenv.hostPlatform.isDarwin shortenPerlShebang;
|
|
|
|
nativeCheckInputs = [ 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
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
shortenPerlShebang $out/bin/wakeonlan
|
|
'';
|
|
|
|
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 ];
|
|
mainProgram = "wakeonlan";
|
|
};
|
|
}
|