tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ell: 0.58 -> 0.59
Sergei Trofimovich
2 years ago
c0dfbebe
1d6eb597
+9
-11
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
ell
default.nix
+9
-11
pkgs/os-specific/linux/ell/default.nix
···
3
, autoreconfHook
4
, pkg-config
5
, dbus
6
-
, fetchpatch
7
, sysctl
0
8
}:
9
10
stdenv.mkDerivation rec {
11
pname = "ell";
12
-
version = "0.58";
13
14
outputs = [ "out" "dev" ];
15
16
src = fetchgit {
17
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
18
rev = version;
19
-
hash = "sha256-CwUwwvyT541aIvypVMqRhHkVJLna121Cme+v7c0FLWo=";
20
};
21
22
nativeBuildInputs = [
···
30
sysctl
31
];
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
enableParallelBuilding = true;
42
43
# tests sporadically fail on musl
44
doCheck = !stdenv.hostPlatform.isMusl;
0
0
0
0
0
0
45
46
meta = with lib; {
47
homepage = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
···
3
, autoreconfHook
4
, pkg-config
5
, dbus
0
6
, sysctl
7
+
, gitUpdater
8
}:
9
10
stdenv.mkDerivation rec {
11
pname = "ell";
12
+
version = "0.59";
13
14
outputs = [ "out" "dev" ];
15
16
src = fetchgit {
17
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
18
rev = version;
19
+
hash = "sha256-uJcGYT+JSdz/XTyJb/VUyedmSKJW/4BbTM3fw3ebtIc=";
20
};
21
22
nativeBuildInputs = [
···
30
sysctl
31
];
32
0
0
0
0
0
0
0
0
33
enableParallelBuilding = true;
34
35
# tests sporadically fail on musl
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
+
};
43
44
meta = with lib; {
45
homepage = "https://git.kernel.org/pub/scm/libs/ell/ell.git";