iwd: split ell to separate derivation, update iwd and ell

This commit is contained in:
Will Dietz
2019-04-22 15:55:15 -05:00
parent 40d2f43fe5
commit 20ba9c03ed
3 changed files with 34 additions and 13 deletions
+22
View File
@@ -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 ];
};
}