From 20ba9c03ed5b7604953ff737d9aef6be0b592067 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 21 Mar 2019 10:53:06 -0500 Subject: iwd: split ell to separate derivation, update iwd and ell --- pkgs/os-specific/linux/ell/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/os-specific/linux/ell/default.nix (limited to 'pkgs/os-specific/linux/ell') diff --git a/pkgs/os-specific/linux/ell/default.nix b/pkgs/os-specific/linux/ell/default.nix new file mode 100644 index 00000000000..26c39fdbe6c --- /dev/null +++ b/pkgs/os-specific/linux/ell/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1