chatty: unbreak by relying on same commit Alpine does

Motivation: Fix chatty.

Background: chatty 0.6.7 depends on libsoup2 and
evolution-data-service. During the GNOME 42 -> 43 migration,
evolution-data-service changed from using libsoup2 to
libsoup3. chatty's use of libsoup2 and libsoup3 was
conflicting, and thus chatty broke.

To fix this, let's use a recent unreleased commit, as Alpine did:
https://git.alpinelinux.org/aports/commit/community/chatty/APKBUILD?id=1184b834c74362df3f9963585311256ed2c6908a

Longer term, we can use chatty 0.7 when it is released:
https://source.puri.sm/Librem5/chatty/-/merge_requests/1134
This commit is contained in:
Tom Fitzhenry 2022-10-14 09:49:37 +11:00
parent 7a94322ed7
commit a4d63cf111

View file

@ -29,15 +29,16 @@
stdenv.mkDerivation rec {
pname = "chatty";
version = "0.6.7";
version = "unstable-2022-09-20";
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
repo = "chatty";
rev = "v${version}";
# https://source.puri.sm/Librem5/chatty/-/tree/247c53fd990f7472ddd1a92c2f9e1299ae3ef4e4
rev = "247c53fd990f7472ddd1a92c2f9e1299ae3ef4e4";
fetchSubmodules = true;
hash = "sha256-W4w/00mRgjfyQmLQ81/EAN+80qk7kDkBmMPJnOU+AIc=";
hash = "sha256-9hgQC0vLmmJJxrBWTdTIrJbSSwLS23uVoJri2ieCj4E=";
};
postPatch = ''
@ -87,7 +88,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda tomfitzhenry ];
platforms = platforms.linux;
# Requires upgrade to libsoup3
broken = true;
};
}