Merge pull request #145070 from ymatsiuk/ell_iwd
ell: 0.44 -> 0.45; iwd: 1.17 -> 1.19
This commit is contained in:
commit
3a3bdc57e4
2 changed files with 5 additions and 14 deletions
|
@ -7,14 +7,14 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ell";
|
||||
version = "0.44";
|
||||
version = "0.45";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git";
|
||||
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
|
||||
rev = version;
|
||||
sha256 = "sha256-8korsEvlQOtfyuGkzFun1Xbuc4uhI2I0YpACUfxlpIM=";
|
||||
sha256 = "sha256-W+IXubPuA/BQzD/LknCeJQgTXUH6I/rUrKBMeEzcBlw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
|
@ -8,17 +8,16 @@
|
|||
, readline
|
||||
, openssl
|
||||
, python3Packages
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "iwd";
|
||||
version = "1.17";
|
||||
version = "1.19";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
|
||||
rev = version;
|
||||
sha256 = "sha256-uWWdKjxctz8fdiIkSiuOYNcZPhxEWDXaA8QPLnd/I9c=";
|
||||
sha256 = "sha256-sMET4ouZ33SZRnkqJBadVvIDYMCOi7pib6d1zt1EJ8k=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "man" ]
|
||||
|
@ -57,14 +56,6 @@ stdenv.mkDerivation rec {
|
|||
"--with-systemd-networkdir=${placeholder "out"}/lib/systemd/network/"
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Fix failure in test-eapol. Remove when bumping to 1.18
|
||||
(fetchpatch {
|
||||
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=ed10b00afa3f4c087b46d7ba0b60a47bd05d8b39";
|
||||
sha256 = "0n8ixrbfh428ajncakcb9kd2n4fw82kw9sfskn1d9ny0lrg39nvg";
|
||||
})
|
||||
];
|
||||
|
||||
postUnpack = ''
|
||||
mkdir -p iwd/ell
|
||||
ln -s ${ell.src}/ell/useful.h iwd/ell/useful.h
|
||||
|
|
Loading…
Reference in a new issue