Merge pull request #60058 from dtzWill/feature/iwd-ell-split-and-update
iwd: split ell to separate derivation, update iwd and ell
This commit is contained in:
commit
536fe532c2
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ell";
|
||||||
|
version = "0.19";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0qvgn5yxffgmlggixf6kh57gxricf57iyc8mqwn46j615bijvjs8";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
||||||
|
description = "Embedded Linux Library";
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ mic92 dtzWill ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,19 +1,14 @@
|
||||||
{ stdenv, fetchgit, autoreconfHook, pkgconfig, coreutils, readline, python3Packages }:
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, ell, coreutils, readline, python3Packages }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
ell = fetchgit {
|
pname = "iwd";
|
||||||
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
|
||||||
rev = "0.17";
|
version = "0.17";
|
||||||
sha256 = "0yk1qmvpy61qp82bb0w55n062jqzlkzbz0b1v5k763j98czz9rvz";
|
|
||||||
};
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "iwd-${version}";
|
|
||||||
version = "0.14";
|
|
||||||
|
|
||||||
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;
|
||||||
sha256 = "08ijlnwvj1w354gbv3hdnm3l4iy24qzq4bq5a9z0wynysasw09lv";
|
sha256 = "1bqkzl03qvzfq5hqd9nsfc98k0iyz864nzcrnbf3fr0n9wnzqffz";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -23,6 +18,7 @@ in stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
ell
|
||||||
readline
|
readline
|
||||||
python3Packages.python
|
python3Packages.python
|
||||||
];
|
];
|
||||||
|
@ -36,12 +32,13 @@ in stdenv.mkDerivation rec {
|
||||||
"--with-dbus-datadir=${placeholder "out"}/etc/"
|
"--with-dbus-datadir=${placeholder "out"}/etc/"
|
||||||
"--with-dbus-busdir=${placeholder "out"}/share/dbus-1/system-services/"
|
"--with-dbus-busdir=${placeholder "out"}/share/dbus-1/system-services/"
|
||||||
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
|
"--with-systemd-unitdir=${placeholder "out"}/lib/systemd/system/"
|
||||||
|
"--with-systemd-modloaddir=${placeholder "out"}/etc/modules-load.d/" # maybe
|
||||||
"--localstatedir=/var/"
|
"--localstatedir=/var/"
|
||||||
"--enable-wired"
|
"--enable-wired"
|
||||||
|
"--enable-external-ell"
|
||||||
];
|
];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
ln -s ${ell} ell
|
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -1420,6 +1420,8 @@ in
|
||||||
|
|
||||||
elementary-xfce-icon-theme = callPackage ../data/icons/elementary-xfce-icon-theme { };
|
elementary-xfce-icon-theme = callPackage ../data/icons/elementary-xfce-icon-theme { };
|
||||||
|
|
||||||
|
ell = callPackage ../os-specific/linux/ell { };
|
||||||
|
|
||||||
elm-github-install = callPackage ../tools/package-management/elm-github-install { };
|
elm-github-install = callPackage ../tools/package-management/elm-github-install { };
|
||||||
|
|
||||||
emby = callPackage ../servers/emby { };
|
emby = callPackage ../servers/emby { };
|
||||||
|
|
Loading…
Reference in New Issue