Merge pull request #300282 from trofi/ell-iwd-update

This commit is contained in:
Maxine Aubrey 2024-03-31 11:25:04 +02:00 committed by GitHub
commit 666d584a15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -9,14 +9,14 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ell"; pname = "ell";
version = "0.63"; version = "0.64";
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];
src = fetchgit { src = fetchgit {
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git"; url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
rev = version; rev = version;
hash = "sha256-husK3eurfL1NhRHgJUdFP6sYLqeZ4NSHa/tU8PUWmGo="; hash = "sha256-LONfgFgPg8KCDwtw//WTOYQT9RpnIskdHAWcgafOhcg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -13,12 +13,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "iwd"; pname = "iwd";
version = "2.16"; version = "2.17";
src = fetchgit { src = fetchgit {
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
rev = version; rev = version;
hash = "sha256-YWtiI2HkGyIdUeBXerQtN5UvgaMaUs9eoG88ZUQRrDg="; hash = "sha256-o/Q8vUtB4Yiz1x+/6+8LUKUQNtiAmwcdh++/tTUN4mM=";
}; };
outputs = [ "out" "man" "doc" ] outputs = [ "out" "man" "doc" ]
@ -81,9 +81,9 @@ stdenv.mkDerivation rec {
postFixup = '' postFixup = ''
substituteInPlace $out/share/dbus-1/system-services/net.connman.ead.service \ substituteInPlace $out/share/dbus-1/system-services/net.connman.ead.service \
--replace /bin/false ${coreutils}/bin/false --replace-fail /bin/false ${coreutils}/bin/false
substituteInPlace $out/share/dbus-1/system-services/net.connman.iwd.service \ substituteInPlace $out/share/dbus-1/system-services/net.connman.iwd.service \
--replace /bin/false ${coreutils}/bin/false --replace-fail /bin/false ${coreutils}/bin/false
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;