Skip to content

Commit

Permalink
Merge pull request NixOS#47217 from dywedir/iwd
Browse files Browse the repository at this point in the history
iwd: 0.7 -> 0.8
  • Loading branch information
Mic92 committed Sep 23, 2018
2 parents d57b9eb + 3b7ecaa commit ef764eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions nixos/modules/services/networking/iwd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ in {

systemd.packages = [ pkgs.iwd ];

systemd.services.iwd.wantedBy = [ "multi-user.target" ];

systemd.tmpfiles.rules = [
"d /var/lib/iwd 0700 root root -"
];
Expand Down
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/iwd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
let
ell = fetchgit {
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
rev = "0.9";
sha256 = "1kg7cx7ir8bvz33n624ncrq9r4fh7rg9z22fly894a3mk1imq22p";
rev = "0.10";
sha256 = "1yzbx4l3a6hbdmirgbvnrjfiwflyzd38mbxnp23gn9hg3ni3br34";
};
in stdenv.mkDerivation rec {
name = "iwd-${version}";
version = "0.7";
version = "0.8";

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

nativeBuildInputs = [
Expand Down

0 comments on commit ef764eb

Please sign in to comment.