1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ell: 0.66 -> 0.67

Changes: https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog?h=0.67
This commit is contained in:
Sergei Trofimovich 2024-07-09 22:39:05 +01:00
parent 19e54db257
commit afa6f75b75

View file

@ -1,6 +1,5 @@
{ lib, stdenv
, fetchgit
, fetchpatch
, autoreconfHook
, pkg-config
, dbus
@ -10,27 +9,16 @@
stdenv.mkDerivation rec {
pname = "ell";
version = "0.66";
version = "0.67";
outputs = [ "out" "dev" ];
src = fetchgit {
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git";
rev = version;
hash = "sha256-FqJbAE2P6rKKUMwcDShCKNDQu4RRifEGrbE7F4gSpm0=";
hash = "sha256-PIxPhKqsxybkLQerkQ15kTRh0oW812lWbCGEig11KQk=";
};
patches = [
# Without the revert TCP dbus tests fail to bind the port and fail.
# Seemingly a known dbus bug: https://gitlab.freedesktop.org/dbus/dbus/-/issues/28
(fetchpatch {
name = "revert-tcp-tests.patch";
url = "https://git.kernel.org/pub/scm/libs/ell/ell.git/patch/?id=7863e06b18b9cce56392b65928e927297108337d";
hash = "sha256-8+M1k0hGE64CHmK1T5/zW8+Q76pIjl5SMaYktRqpudg=";
revert = true;
})
];
nativeBuildInputs = [
pkg-config
autoreconfHook
@ -44,6 +32,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
# Runs multiple dbus instances on the same port failing the bind.
enableParallelChecking = false;
# tests sporadically fail on musl
doCheck = !stdenv.hostPlatform.isMusl;