ell: 0.58 -> 0.59

+9 -11
+9 -11
pkgs/os-specific/linux/ell/default.nix
··· 3 3 , autoreconfHook 4 4 , pkg-config 5 5 , dbus 6 - , fetchpatch 7 6 , sysctl 7 + , gitUpdater 8 8 }: 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "ell"; 12 - version = "0.58"; 12 + version = "0.59"; 13 13 14 14 outputs = [ "out" "dev" ]; 15 15 16 16 src = fetchgit { 17 17 url = "https://git.kernel.org/pub/scm/libs/ell/ell.git"; 18 18 rev = version; 19 - hash = "sha256-CwUwwvyT541aIvypVMqRhHkVJLna121Cme+v7c0FLWo="; 19 + hash = "sha256-uJcGYT+JSdz/XTyJb/VUyedmSKJW/4BbTM3fw3ebtIc="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 30 30 sysctl 31 31 ]; 32 32 33 - patches = [ 34 - # /proc/sys/net/core/somaxconn doesn't always exist in the nix build environment 35 - (fetchpatch { 36 - name = "skip-sysctl-test-if-sysfs-not-available.patch"; 37 - url = "https://patchwork.kernel.org/project/ell/patch/526DA75D-01AB-4D85-BF5C-5F25E5C39480@kloenk.dev/raw/"; 38 - hash = "sha256-YYGYWQ67cbMLt6RnqZmHt+tpvVIDKPbSCqPIouk6alU="; 39 - }) 40 - ]; 41 33 enableParallelBuilding = true; 42 34 43 35 # tests sporadically fail on musl 44 36 doCheck = !stdenv.hostPlatform.isMusl; 37 + 38 + passthru = { 39 + updateScript = gitUpdater { 40 + url = "https://git.kernel.org/pub/scm/libs/ell/ell.git"; 41 + }; 42 + }; 45 43 46 44 meta = with lib; { 47 45 homepage = "https://git.kernel.org/pub/scm/libs/ell/ell.git";