summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ell
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-10-13 11:05:48 +0100
committerSergei Trofimovich <slyich@gmail.com>2023-10-13 11:05:48 +0100
commitc0dfbebe1650aafa1d882fc51ce72b0a7023f9dc (patch)
tree0025cd32620387cc57027fbf84ef32b48055ec4f /pkgs/os-specific/linux/ell
parent1d6eb597f322f82c84a8ccd8598a60a7322b4f1f (diff)
downloadnixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar.gz
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar.bz2
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar.lz
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar.xz
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.tar.zst
nixpkgs-c0dfbebe1650aafa1d882fc51ce72b0a7023f9dc.zip
ell: 0.58 -> 0.59
Diffstat (limited to 'pkgs/os-specific/linux/ell')
-rw-r--r--pkgs/os-specific/linux/ell/default.nix20
1 files changed, 9 insertions, 11 deletions
diff --git a/pkgs/os-specific/linux/ell/default.nix b/pkgs/os-specific/linux/ell/default.nix
index c85a75d1f17..789a59f751f 100644
--- a/pkgs/os-specific/linux/ell/default.nix
+++ b/pkgs/os-specific/linux/ell/default.nix
@@ -3,20 +3,20 @@
 , autoreconfHook
 , pkg-config
 , dbus
-, fetchpatch
 , sysctl
+, gitUpdater
 }:
 
 stdenv.mkDerivation rec {
   pname = "ell";
-  version = "0.58";
+  version = "0.59";
 
   outputs = [ "out" "dev" ];
 
   src = fetchgit {
     url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
     rev = version;
-    hash = "sha256-CwUwwvyT541aIvypVMqRhHkVJLna121Cme+v7c0FLWo=";
+    hash = "sha256-uJcGYT+JSdz/XTyJb/VUyedmSKJW/4BbTM3fw3ebtIc=";
   };
 
   nativeBuildInputs = [
@@ -30,19 +30,17 @@ stdenv.mkDerivation rec {
     sysctl
   ];
 
-  patches = [
-    # /proc/sys/net/core/somaxconn doesn't always exist in the nix build environment
-    (fetchpatch {
-      name = "skip-sysctl-test-if-sysfs-not-available.patch";
-      url = "https://patchwork.kernel.org/project/ell/patch/526DA75D-01AB-4D85-BF5C-5F25E5C39480@kloenk.dev/raw/";
-      hash = "sha256-YYGYWQ67cbMLt6RnqZmHt+tpvVIDKPbSCqPIouk6alU=";
-    })
-  ];
   enableParallelBuilding = true;
 
   # tests sporadically fail on musl
   doCheck = !stdenv.hostPlatform.isMusl;
 
+  passthru = {
+    updateScript = gitUpdater {
+      url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
+    };
+  };
+
   meta = with lib; {
     homepage = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
     description = "Embedded Linux Library";