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

Commits on Nov 10, 2018

  1. iwd: 0.9 -> 0.11

    dywedir committed Nov 10, 2018
    Copy the full SHA
    7b9632a View commit details
  2. Merge pull request #50195 from dywedir/iwd

    iwd: 0.9 -> 0.11
    Mic92 authored Nov 10, 2018
    1
    Copy the full SHA
    09be0ab View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/os-specific/linux/iwd/default.nix
11 changes: 6 additions & 5 deletions pkgs/os-specific/linux/iwd/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{ stdenv, fetchgit, autoreconfHook, coreutils, readline, python3Packages }:
{ stdenv, fetchgit, autoreconfHook, pkgconfig, coreutils, readline, python3Packages }:

let
ell = fetchgit {
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
rev = "0.11";
sha256 = "0nifa5w6fxy7cagyas2a0zhcppi83yrcsnnp70ls2rc90x4r1ip8";
rev = "0.14";
sha256 = "13jlmdk47pscmfs3c12awfwr3m6ka4fh6fyr9cl1bmqdpwqmmmk6";
};
in stdenv.mkDerivation rec {
name = "iwd-${version}";
version = "0.9";
version = "0.11";

src = fetchgit {
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
rev = version;
sha256 = "1l1jbwsshjbz32s4rf0zfcn3fd16si4y9qa0zaxp00bfzflnpcd4";
sha256 = "0q79rdj3h16xdf0g2jdsvb2141z36z89vgzq0qn31pxzhgxdgf7j";
};

nativeBuildInputs = [
autoreconfHook
pkgconfig
python3Packages.wrapPython
];