Skip to content

Commit 2dc1546

Browse files
authored
bolt: 0.9.7 -> 0.9.8 (NixOS#366006)
2 parents cd47d56 + 2ea22a2 commit 2dc1546

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

pkgs/by-name/bo/bolt/0001-skip-mkdir.patch

Lines changed: 0 additions & 12 deletions
This file was deleted.

pkgs/by-name/bo/bolt/package.nix

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,23 @@
2222

2323
stdenv.mkDerivation rec {
2424
pname = "bolt";
25-
version = "0.9.7";
25+
version = "0.9.8";
2626

2727
src = fetchFromGitLab {
2828
domain = "gitlab.freedesktop.org";
2929
owner = "bolt";
3030
repo = "bolt";
3131
rev = version;
32-
sha256 = "sha256-6m4Yrev9W5WV4/pptc8tJ4hc6QSC+eJ7BSt2mx33s9U=";
32+
hash = "sha256-sDPipSIT2MJMdsOjOQSB+uOe6KXzVnyAqcQxPPr2NsU=";
3333
};
3434

3535
patches = [
36-
# meson install tries to create /var/lib/boltd
37-
./0001-skip-mkdir.patch
38-
3936
# Test does not work on ZFS with atime disabled.
4037
# Upstream issue: https://gitlab.freedesktop.org/bolt/bolt/-/issues/167
4138
(fetchpatch {
4239
url = "https://gitlab.freedesktop.org/bolt/bolt/-/commit/c2f1d5c40ad71b20507e02faa11037b395fac2f8.diff";
4340
revert = true;
44-
sha256 = "6w7ll65W/CydrWAVi/qgzhrQeDv1PWWShulLxoglF+I=";
41+
hash = "sha256-6w7ll65W/CydrWAVi/qgzhrQeDv1PWWShulLxoglF+I=";
4542
})
4643
];
4744

@@ -59,16 +56,13 @@ stdenv.mkDerivation rec {
5956
ninja
6057
pkg-config
6158
glib
62-
] ++ lib.optional (!doCheck) python3;
59+
];
6360

6461
buildInputs = [
6562
polkit
6663
systemd
6764
];
6865

69-
# https://gitlab.freedesktop.org/bolt/bolt/-/issues/181
70-
doCheck = false;
71-
7266
preCheck = ''
7367
export LD_LIBRARY_PATH=${umockdev.out}/lib/
7468
'';

0 commit comments

Comments
 (0)