summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ell
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-21 10:53:06 -0500
committerWill Dietz <w@wdtz.org>2019-04-22 15:55:15 -0500
commit20ba9c03ed5b7604953ff737d9aef6be0b592067 (patch)
treeb71a6c3e3c2e324f7dd8949ec30253f9e4a03251 /pkgs/os-specific/linux/ell
parent40d2f43fe5db04a40919f84dab7888503a2446df (diff)
downloadnixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar.gz
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar.bz2
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar.lz
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar.xz
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.tar.zst
nixpkgs-20ba9c03ed5b7604953ff737d9aef6be0b592067.zip
iwd: split ell to separate derivation, update iwd and ell
Diffstat (limited to 'pkgs/os-specific/linux/ell')
-rw-r--r--pkgs/os-specific/linux/ell/default.nix22
1 files changed, 22 insertions, 0 deletions
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 ];
+  };
+}