Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 163adc50392c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f22413f87431
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 25, 2018

  1. aircrack-ng: 1.2 -> 1.4

    loskutov committed Oct 25, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    e9f1ca0 View commit details
  2. Merge pull request #49098 from loskutov/master

    aircrack-ng: 1.2 -> 1.4
    dywedir authored Oct 25, 2018
    Copy the full SHA
    f22413f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/networking/aircrack-ng/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/networking/aircrack-ng/default.nix
Original file line number Diff line number Diff line change
@@ -3,18 +3,18 @@
, autoreconfHook }:

stdenv.mkDerivation rec {
name = "aircrack-ng-1.2";
name = "aircrack-ng-1.4";

src = fetchurl {
url = "https://download.aircrack-ng.org/${name}.tar.gz";
sha256 = "0z7sl1ihgrnc98bpqa1mmkh51w26fnsanvj6ydwcnd8g83azwkvr";
sha256 = "0fz1g6sd7dkfgcxrfrnqbygpx8d4ziyidm9wjb0ws9xgyy52l2cn";
};

nativeBuildInputs = [ pkgconfig makeWrapper autoreconfHook ];
buildInputs = [ libpcap openssl zlib libnl iw ethtool pciutils ];

patchPhase = ''
sed -e 's@/usr/local/bin@'${wirelesstools}@ -i src/osdep/linux.c
sed -e 's@/usr/local/bin@'${wirelesstools}@ -i src/aircrack-osdep/linux.c
'';

postFixup = ''