aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/os-specific/linux/ell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/ell/default.nix')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/ell/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/ell/default.nix b/nixpkgs/pkgs/os-specific/linux/ell/default.nix
new file mode 100644
index 00000000000..223a9b7bf79
--- /dev/null
+++ b/nixpkgs/pkgs/os-specific/linux/ell/default.nix
@@ -0,0 +1,47 @@
+{ stdenv
+, fetchgit
+, autoreconfHook
+, pkgconfig
+, dbus
+}:
+
+stdenv.mkDerivation rec {
+ pname = "ell";
+ version = "0.22";
+
+ outputs = [ "out" "dev" ];
+
+ src = fetchgit {
+ url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git";
+ rev = version;
+ sha256 = "0dk4j1b8sy4j6w91cq5ga99f3hln9fgh79ayi9kvn8xgzksmhjdp";
+ };
+
+ patches = [
+ ./fix-dbus-tests.patch
+ ];
+
+ nativeBuildInputs = [
+ pkgconfig
+ autoreconfHook
+ ];
+
+ checkInputs = [
+ dbus
+ ];
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ homepage = https://01.org/ell;
+ description = "Embedded Linux Library";
+ longDescription = ''
+ The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons. It typically has no dependencies other than the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems.
+ '';
+ license = licenses.lgpl21Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ mic92 dtzWill ];
+ };
+}