Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 23902ce7dd6e
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e6deb2955c2b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 13, 2019

  1. arp-scan: 1.9.5 -> 1.9.7

    - 1.9.5 -> 1.9.7
    - Fixes perl shebang and PERL5LIB for get-{oui,iab} scripts
    - Quoted meta.homepage
    
    (cherry picked from commit 5f19aab)
    stigtsp authored and bjornfor committed Dec 13, 2019

    Partially verified

    This commit is signed with the committer’s verified signature.
    domenkozar’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    e6deb29 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/tools/misc/arp-scan/default.nix
12 changes: 6 additions & 6 deletions pkgs/tools/misc/arp-scan/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "arp-scan";
version = "1.9.5";
version = "1.9.7";

src = fetchFromGitHub {
owner = "royhills";
repo = "arp-scan";
rev = "4de863c2627a05177eda7159692a588f9f520cd1";
sha256 = "15zpfdybk2kh98shqs8qqd0f9nyi2ch2wcyv729rfj7yp0hif5mb";
rev = version;
sha256 = "1mf7a4f9vzvnkiavc87aqyciswggsb4fpy7j05jxnvjyyxv3l7gp";
};

perlModules = with perlPackages; [
@@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
];

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libpcap makeWrapper ];
buildInputs = [ perlPackages.perl libpcap makeWrapper ];

postInstall = ''
for name in get-{oui,iab}; do
wrapProgram "$out/bin/$name" --set PERL5LIB "${perlPackages.makePerlPath perlModules }"
wrapProgram "$out/bin/$name" --set PERL5LIB "${perlPackages.makeFullPerlPath perlModules}"
done;
'';

@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
Arp-scan is a command-line tool that uses the ARP protocol to discover
and fingerprint IP hosts on the local network.
'';
homepage = http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation;
homepage = "http://www.nta-monitor.com/wiki/index.php/Arp-scan_Documentation";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ bjornfor mikoim ];