···1+This part caused build failures in Collabora.
2+3+LibreOffice has just dropped the entire file some time ago.
4+5+--- a/i18npool/source/breakiterator/data/sent.txt 1970-01-01 01:00:01.000000000 +0100
6+--- b/i18npool/source/breakiterator/data/sent.txt 1970-01-01 01:00:01.000000000 +0100
7+@@ -88,41 +88,3 @@
8+ [[^$STerm $ATerm $Close $Sp $Sep $Format $Extend $Thai]{bof}] ($Extend | $Format | $Close | $Sp)* [^$Thai];
9+ [[^$STerm $ATerm $Close $Sp $Sep $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep{eof}] | $CR $LF){100};
10+11+-## -------------------------------------------------
12+-
13+-!!reverse;
14+-
15+-$SpEx_R = ($Extend | $Format)* $Sp;
16+-$ATermEx_R = ($Extend | $Format)* $ATerm;
17+-$STermEx_R = ($Extend | $Format)* $STerm;
18+-$CloseEx_R = ($Extend | $Format)* $Close;
19+-
20+-#
21+-# Reverse rules.
22+-# For now, use the old style inexact reverse rules, which are easier
23+-# to write, but less efficient.
24+-# TODO: exact reverse rules. It appears that exact reverse rules
25+-# may require improving support for look-ahead breaks in the
26+-# builder. Needs more investigation.
27+-#
28+-
29+-[{bof}] (.? | $LF $CR) [^$Sep]* [$Sep {eof}] ($SpEx_R* $CloseEx_R* ($STermEx_R | $ATermEx_R))*;
30+-#.*;
31+-
32+-# Explanation for this rule:
33+-#
34+-# It needs to back over
35+-# The $Sep at which we probably begin
36+-# All of the non $Sep chars leading to the preceding $Sep
37+-# The preceding $Sep, which will be the second one that the rule matches.
38+-# Any immediately preceding STerm or ATerm sequences. We need to see these
39+-# to get the correct rule status when moving forwards again.
40+-#
41+-# [{bof}] inhibit rule chaining. Without this, rule would loop on itself and match
42+-# the entire string.
43+-#
44+-# (.? | $LF $CR) Match one $Sep instance. Use .? rather than $Sep because position might be
45+-# at the beginning of the string at this point, and we don't want to fail.
46+-# Can only use {eof} once, and it is used later.
47+-#
48+-
···34 libudev-zero
35 ];
36000000037 meta = {
38 description = "A bridge service that connects web wallets like Rabby to BitBox02";
39 homepage = "https://github.com/BitBoxSwiss/bitbox-bridge";
···34 libudev-zero
35 ];
3637+ postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
38+ mkdir -p $out/lib/systemd/user
39+ substitute bitbox-bridge/release/linux/bitbox-bridge.service $out/lib/systemd/user/bitbox-bridge.service \
40+ --replace-fail /opt/bitbox-bridge/bin/bitbox-bridge $out/bin/bitbox-bridge
41+ install -Dm644 bitbox-bridge/release/linux/hid-digitalbitbox.rules $out/lib/udev/rules.d/50-hid-digitalbitbox.rules
42+ '';
43+44 meta = {
45 description = "A bridge service that connects web wallets like Rabby to BitBox02";
46 homepage = "https://github.com/BitBoxSwiss/bitbox-bridge";
···1+diff --git a/setup.py b/setup.py
2+index 9a2abe0..75ce109 100644
3+--- a/setup.py
4++++ b/setup.py
5+@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
6+7+ # determine the version, then write it out into the bridge.py file
8+ version = (
9+- subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip()
10++ "@version@"
11+ )
12+ # check if this is a non-tag release and remark it as a dev release
13+ if "-" in version:
···1+diff --git a/setup.py b/setup.py
2+index 079cb01..c5e71b8 100644
3+--- a/setup.py
4++++ b/setup.py
5+@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
6+ long_description = fh.read()
7+8+ # determine the version, then write it out into the bridge.py file
9+-version = subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip()
10++version = "@version@"
11+ # check if this is a non-tag release and remark it as a dev release
12+ if "-" in version:
13+ ver, commits, hash = version.split("-")
···231.It Cm build-image
232Build a disk-image variant, pre-configured for the given platform/provider.
233Select a variant with the
234-.Fl --image-variant
235option or run without any options to get a list of available variants.
236237.Bd -literal -offset indent
···231.It Cm build-image
232Build a disk-image variant, pre-configured for the given platform/provider.
233Select a variant with the
234+.Fl -image-variant
235option or run without any options to get a list of available variants.
236237.Bd -literal -offset indent