Commit Graph

3108 Commits

Author SHA1 Message Date
Nick Cao
f67bf208a5
stratisd: 3.5.8 -> 3.5.9
Diff: https://github.com/stratis-storage/stratisd/compare/refs/tags/stratisd-v3.5.8...stratisd-v3.5.9
2023-09-01 06:23:52 +08:00
R. Ryantm
915bfd5358 bindfs: 1.17.3 -> 1.17.4 2023-08-30 18:17:28 +00:00
0x4A6F
50ac3d5575
Merge pull request #252142 from adamcstephens/garage/0.8.3
garage: 0.8.2 -> 0.8.3
2023-08-30 17:56:45 +02:00
Malte Poll
c0158e9c47 dosfstools: backport reproducible builds patch
Upstream, dosfstools respects SOURCE_DATE_EPOCH since this commit:
8da7bc9331
This means tools like mkfs.vfat will create deterministic outputs when SOURCE_DATE_EPOCH is set.
A backport in nixpkgs is warranted since this was already merged in 2021 and no release of dosfstools has been made since then.

Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-08-30 09:32:18 +02:00
Sascha Grunert
7dcc1657c7
fuse-overlayfs: 1.12 -> 1.13
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2023-08-30 09:29:11 +02:00
Adam Stephens
9e18d0f618
garage: 0.8.2 -> 0.8.3 2023-08-29 14:00:32 -04:00
Adam Stephens
c94e8021de
garage: fix passthru tests attribute 2023-08-29 13:59:55 -04:00
Artturi
9815bda285
Merge pull request #247414 from amjoseph-nixpkgs/pr/meta.availableOn/ceph 2023-08-28 21:54:29 +03:00
Fabian Affolter
c1bb32ee72 catcli: 0.8.7 -> 0.9.6
Diff: https://github.com/deadc0de6/catcli/compare/refs/tags/v0.8.7...v0.9.6

Changelog: https://github.com/deadc0de6/catcli/releases/tag/v0.9.6
2023-08-26 12:50:23 +02:00
R. Ryantm
69f0781c5f mount-zip: 1.0.8 -> 1.0.9 2023-08-24 11:48:44 +00:00
figsoda
ff51f307f5 dysk: 2.7.2 -> 2.8.0
Diff: https://github.com/Canop/dysk/compare/v2.7.2...v2.8.0

Changelog: https://github.com/Canop/dysk/blob/v2.8.0/CHANGELOG.md
2023-08-22 09:53:42 -04:00
ayes-web
790f188d60 duperemove: 0.11.3 -> 0.12 2023-08-14 20:20:39 -05:00
Sergei Trofimovich
b3218a102f duperemove: encode absolute path to lscpu
Without the change `duperemove` fails to run in parallel
if `PATH` is missing `lscpu` as:

    $ PATH= ./result/bin/duperemove /tmp
    sh: line 1: lscpu: No such file or directory
    Gathering file list...
    No dedupe candidates found.

Noticed when wrote a minimal systemd timer for `duperemove`.
2023-08-12 10:01:43 +01:00
Jan Malakhovski
591ccfe5b9 treewide: noop: refer to src.name or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5ce left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.

Also, similarly to d8f7f6a5ce some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-11 09:20:44 +00:00
Doron Behar
5fa3ab255c
Merge pull request #224850 from orthros/upspin
upspin: init at unstable-2023-02-05
2023-08-08 06:31:22 +00:00
Niklas Hambüchen
f8262c2cc6 ceph: 17.2.5 -> 18.2.0
The following issues were encountered during the upgrade:

* "Could NOT find thrift (missing: thrift_LIBRARIES thrift_INCLUDE_DIR)"
  Fixed by disabling Jaeger support, see added comment.
* ```
  /build/ceph-18.2.0/src/extblkdev/ExtBlkDevInterface.h:38:10: fatal error: sys/capability.h: No such file or directory
    38 | #include <sys/capability.h>
  ```
  Fixed by `libcap` dependency.
  Ceph's Debian dependencies include both `libcap` and `libcap-ng`:
  c8c946c970/debian/control (L38-L39)
* ```
  Manually-specified variables were not used by the project:
    MGR_PYTHON_VERSION
  ```
  Dropped 4 years ago for Ceph 15:
  5fc657b40d
  So I removed the flag.
* Warning:
  ```
  -- Could NOT find nasm
  ```
  Looking at the code (macros such as `HAVE_NASM_X64`), nasm existence actually results in some optimised crypto SIMD instructions being compiled, so we probably want this for performance.
  Adding `nasm` to `nativeBuildInputs` first brought error:
  ```
  /nix/store/p6dlr3skfhxpyphipg2bqnj52999banh-bash-5.2-p15/bin/bash: line 1: /build/ceph-18.2.0/src/nasm-wrapper: cannot execute: required file not found
  make[2]: *** [src/crypto/isa-l/CMakeFiles/ceph_crypto_isal.dir/build.make:117: src/crypto/isa-l/CMakeFiles/ceph_crypto_isal.dir/isa-l_crypto/aes/cbc_multibinary.asm.o] Error 127
  ```
  Solution: `patchShebangs src/nasm-wrapper`, even better `patchShebangs src/`.
* ```
  Manually-specified variables were not used by the project:
    WITH_SYSTEM_CIMG
    WITH_SYSTEM_JSONCPP
  ```
  These never were Ceph CMake options, so I removed them.
* `libcap-ng` is Linux-only, and only used for the `mount.ceph` command:
  c8c946c970/src/CMakeLists.txt (L829-L830)
  Thus use it for Linux only.
* The Parquet build error is now gone, so we can enable support for it.
2023-08-08 02:16:59 +00:00
Colin Nelson
819cbe1699
upspin: init at unstable-2023-02-05 2023-08-07 08:29:23 -07:00
R. Ryantm
c4430a8123 gcsfuse: 1.0.0 -> 1.0.1 2023-08-07 00:39:56 +00:00
Adam Joseph
dc028fdac2 ceph: use availableOn instead of meta.available
pkg.meta.available is deprecated (see subsequent commit which adds a
warning) and does not distinguish between the buildPlatform and the
hostPlatform.
2023-08-05 16:27:33 -07:00
figsoda
c720055b91 dysk: 2.7.1 -> 2.7.2
Diff: https://github.com/Canop/dysk/compare/v2.7.1...v2.7.2

Changelog: https://github.com/Canop/dysk/blob/v2.7.2/CHANGELOG.md
2023-08-03 15:42:46 -04:00
Jan Malakhovski
5852f26bdc treewide: noop: refer to src.name or similar in sourceRoot where appropriate, part 1: trivial cases 2023-08-03 16:32:03 +00:00
R. Ryantm
8acd2ac8b0 squashfuse: 0.2.0 -> 0.4.0 2023-08-02 00:19:38 +00:00
Janik
cac84fbb5c
Merge pull request #245811 from NickCao/stratis 2023-07-29 23:47:36 +02:00
ajs124
f4fe83a4a7
Merge pull request #244350 from helsinki-systems/upd/xfsprogs
xfsprogs: 6.3.0 -> 6.4.0
2023-07-28 16:34:34 +02:00
Nick Cao
8e7549a627
stratisd: 3.5.7 -> 3.5.8
Diff: https://github.com/stratis-storage/stratisd/compare/v3.5.7...stratisd-v3.5.8
2023-07-28 09:58:45 +08:00
R. Ryantm
77430102c7 btrfs-progs: 6.3.2 -> 6.3.3 2023-07-27 20:06:04 +00:00
Janik
b8fab6a504
Merge pull request #245592 from tpwrules/update-dwarfs 2023-07-27 15:27:00 +02:00
figsoda
cc416ed7c4
Merge pull request #245391 from figsoda/fs 2023-07-26 23:16:01 -04:00
Nick Cao
66afef346c
Merge pull request #245574 from r-ryantm/auto-update/tar2ext4
tar2ext4: 0.9.8 -> 0.10.0
2023-07-26 20:41:17 -06:00
Thomas Watson
61636ed59a dwarfs: 0.6.2 -> 0.7.2 2023-07-26 14:33:48 -05:00
R. Ryantm
38e7c1eea2 tar2ext4: 0.9.8 -> 0.10.0 2023-07-26 18:27:18 +00:00
Pol Dellaiera
7e6912f7f8
Merge pull request #222982 from arti5an/mount-zip
mount-zip: init at 1.0.8
2023-07-26 18:14:26 +02:00
Richard Smith
754fd32de4 mount-zip: init at 1.0.8 2023-07-26 15:27:46 +00:00
ajs124
08e3fb9546 xfsprogs: 6.3.0 -> 6.4.0 2023-07-26 12:43:18 +02:00
adisbladis
16f072d94f
Merge pull request #245160 from SuperSandro2000/goofys
goofys: update vendor hash
2023-07-26 11:06:00 +12:00
figsoda
b035cabadf pkgs/tools/filesystems: remove dead code
with the help of deadnix & nil
2023-07-25 10:08:41 -04:00
Nick Cao
70eb2b8d15
Merge pull request #245293 from r-ryantm/auto-update/cryfs
cryfs: 0.11.3 -> 0.11.4
2023-07-24 23:03:49 -06:00
R. Ryantm
173f8aa342 cryfs: 0.11.3 -> 0.11.4 2023-07-25 02:59:56 +00:00
Pol Dellaiera
cb57efd4f8
Merge pull request #242069 from emilytrau/disk-inventory-x
disk-inventory-x: init at 1.3
2023-07-25 02:57:59 +02:00
Sandro Jäckel
c161060dc7
goofys: update vendor hash 2023-07-24 11:26:05 +02:00
github-actions[bot]
6afe543aec
Merge master into staging-next 2023-07-23 18:01:33 +00:00
Mario Rodas
1b516c5f5d s3fs: update meta 2023-07-23 11:10:00 +00:00
R. Ryantm
f18f372801 s3fs: 1.92 -> 1.93 2023-07-23 11:09:34 +00:00
Vladimír Čunát
f5d5556aaf
ceph: fixup the embedded sqlalchemy
This version-override approach is annoying me, as the original
derivation is then supposed to support multiple versions
without knowing about it.  And naturally it tends to break.
(this time on 446a8703c3)
https://hydra.nixos.org/build/228178995/nixlog/3/tail
2023-07-21 09:41:49 +02:00
R. Ryantm
d710935cd4 mergerfs: 2.35.1 -> 2.36.0 2023-07-18 04:31:07 +00:00
figsoda
51aae8647b dysk: install man page and shell completions 2023-07-16 21:34:15 -04:00
figsoda
3790f40a40 dysk: 2.6.1 -> 2.7.1
Diff: https://github.com/Canop/dysk/compare/v2.6.1...v2.7.1

Changelog: https://github.com/Canop/dysk/blob/v2.7.1/CHANGELOG.md
2023-07-16 13:42:22 -04:00
Jacob Moody
dfdbcc428f
9pfs: 2015-09-18 -> 0.3 (#241801)
* _9pfs: 2015-09-18 -> 0.3

* _9pfs: add updateScript
2023-07-15 00:30:57 +02:00
Rick van Schijndel
e1163b27dd
Merge pull request #242912 from chayleaf/fix-getent
treewide: update path to getent
2023-07-12 12:37:08 +02:00
John Ericson
d2edc11e9c
Merge pull request #242087 from emilytrau/mountain-duck
mountain-duck: init at 4.14.1.21330
2023-07-11 17:25:37 -04:00
chayleaf
4d4c73ff78 treewide: update path to getent 2023-07-12 02:32:23 +07:00
icyrockcom
cb34ad4c16 fuse-archive: init at 0.1.14 2023-07-09 20:39:50 -03:00
Emily Trau
10df97fcda disk-inventory-x: init at 1.3 2023-07-08 21:45:26 +10:00
Emily Trau
abcb4d0fbc mountain-duck: init at 4.14.1.21330 2023-07-08 01:46:53 +10:00
Weijia Wang
564e44aee9
Merge pull request #241377 from figsoda/dysk
dysk: rename from lfs, 2.6.0 -> 2.6.1
2023-07-05 00:09:40 +03:00
figsoda
4790a8ebdb dysk: add figsoda as a maintainer 2023-07-03 21:13:31 -04:00
figsoda
7085a16a13 dysk: rename from lfs, 2.6.0 -> 2.6.1
Diff: https://github.com/Canop/dysk/compare/v2.6.0...v2.6.1

Changelog: https://github.com/Canop/dysk/blob/v2.6.1/CHANGELOG.md
2023-07-03 21:13:00 -04:00
R. Ryantm
74588d77b4 squashfuse: 0.1.105 -> 0.2.0 2023-07-03 23:36:48 +00:00
Weijia Wang
65771e37f9
Merge pull request #240904 from r-ryantm/auto-update/ceph-csi
ceph-csi: 3.8.0 -> 3.9.0
2023-07-03 10:17:35 +03:00
R. Ryantm
230a05b997 gcsfuse: 0.42.5 -> 1.0.0 2023-07-02 21:20:15 +00:00
Jörg Thalheim
c252f82800 bcachefs-tools: unstable-2023-01-31 -> unstable-2023-06-28 2023-07-01 17:09:32 +02:00
R. Ryantm
0ec1adc42a ceph-csi: 3.8.0 -> 3.9.0 2023-07-01 12:52:13 +00:00
Weijia Wang
b1a839f1cf
Merge pull request #239473 from nikstur/erofs-darwin
erofs-utils: enable running on darwin
2023-06-27 15:36:31 +03:00
nikstur
a3d60923a5 erofs-utils: enable running on darwin 2023-06-27 13:05:02 +02:00
github-actions[bot]
aa5d107299
Merge master into staging-next 2023-06-25 12:01:14 +00:00
7c6f434c
3479aad1bf
Merge pull request #239244 from r-ryantm/auto-update/btrfs-progs
btrfs-progs: 6.3.1 -> 6.3.2
2023-06-25 07:27:47 +00:00
github-actions[bot]
bc9cc8ad2f
Merge master into staging-next 2023-06-23 12:01:26 +00:00
Vladimír Čunát
c311c7c5cc
e2fsprogs: avoid incompatible features in mke2fs
by a patch taken from Debian's 1.47.0-2.  Discussion:
https://github.com/NixOS/nixpkgs/pull/229454#issuecomment-1601698426
2023-06-23 08:22:47 +02:00
R. Ryantm
0c4e5945e9 btrfs-progs: 6.3.1 -> 6.3.2 2023-06-22 18:42:32 +00:00
Franz Pletz
ca66526f73
reiserfsprogs: 3.6.24 -> 3.6.27 2023-06-21 15:46:21 +02:00
László Vaskó
9c824ed079 jefferson: 0.4.2 -> 0.4.5
- `python-lzo` is switched to `lzallright`
2023-06-19 16:22:36 +02:00
László Vaskó
038104d33d jefferson: adding myself as maintainer 2023-06-19 15:15:04 +02:00
ners
219c23a1af ssdfs-utils: 4.24 -> 4.27 2023-06-15 12:35:48 +00:00
ners
f4c243b120 ssdfs-utils: init at 4.24 2023-06-15 12:35:48 +00:00
Weijia Wang
a4f237bfad cryfs: unpin boost175 2023-06-15 12:16:57 +03:00
Sandro Jäckel
3ad7d71afe treewide: don't set platforms.unix for buildGoModule 2023-06-13 17:54:26 +03:00
R. Ryantm
8b25845df3 gocryptfs: 2.3.2 -> 2.4.0 2023-06-13 01:11:41 +00:00
R. Ryantm
44671b84f3 bindfs: 1.17.2 -> 1.17.3 2023-06-11 14:02:44 +00:00
Nick Cao
eda942ec6f
stratis-cli: 3.5.2 -> 3.5.3
Diff: https://github.com/stratis-storage/stratis-cli/compare/v3.5.2...v3.5.3
2023-06-07 22:59:43 +08:00
Nick Cao
abb1b96c57
stratisd: 3.5.5 -> 3.5.7
Diff: https://github.com/stratis-storage/stratisd/compare/v3.5.5...v3.5.7
2023-06-07 22:53:43 +08:00
Nick Cao
3a7cda19dd
Merge pull request #236187 from NickCao/apfsprogs
apfsprogs: unstable-2023-05-16 -> unstable-2023-06-06
2023-06-06 04:12:52 -06:00
Nick Cao
9894760f9c
apfsprogs: unstable-2023-05-16 -> unstable-2023-06-06
Diff: 7be75bcf1a...91827679df
2023-06-06 10:32:07 +08:00
R. Ryantm
ae280978f3 btrfs-progs: 6.3 -> 6.3.1 2023-06-05 17:09:04 +00:00
R. Ryantm
37111dc014 envfs: 1.0.0 -> 1.0.1 2023-06-03 19:28:35 +00:00
github-actions[bot]
698b4f4f63
Merge master into staging-next 2023-05-29 18:01:07 +00:00
Nick Cao
38c9e2336a
xfsprogs: add liburcu to nativeBuildInputs with is required by crc32selftest, fixing cross compilation 2023-05-29 19:12:29 +08:00
Nick Cao
ee55a7e0b6
xfsprogs: removed unneeded make configure invocation and build inputs
build log says `make: 'configure' is up to date.`, meaning that the
invocation is a nop
2023-05-29 19:07:49 +08:00
github-actions[bot]
98bba575c0
Merge master into staging-next 2023-05-28 06:01:07 +00:00
R. Ryantm
bfcd5e6bb1 exfatprogs: 1.2.0 -> 1.2.1 2023-05-27 23:24:28 +00:00
github-actions[bot]
8f73f12f12
Merge master into staging-next 2023-05-27 00:02:24 +00:00
Weijia Wang
ed89912d7c supertag: migrate to bindgenHook 2023-05-27 02:04:05 +03:00
R. Ryantm
517e2be611 s3fs: 1.91 -> 1.92 2023-05-26 15:16:03 +00:00
github-actions[bot]
fced6fe69b
Merge master into staging-next 2023-05-26 00:02:17 +00:00
Will Fancher
fe43923a70
Merge pull request #229767 from mberndt123/mberndt123/stratis-rootfs
nixos/stratis: initrd support for stratis root volumes
2023-05-25 14:06:31 -04:00
github-actions[bot]
137b9085b3
Merge master into staging-next 2023-05-25 18:01:20 +00:00
Weijia Wang
35690e335f treewide/tools: use top-level fetchPypi 2023-05-25 19:03:52 +03:00
github-actions[bot]
a05fa7cdd3
Merge staging-next into staging 2023-05-24 18:01:48 +00:00
R. Ryantm
c7aec66798 gcsfuse: 0.42.4 -> 0.42.5 2023-05-24 09:51:58 +00:00
github-actions[bot]
555dd7329b
Merge staging-next into staging 2023-05-23 18:01:39 +00:00
ajs124
e89ce05027
xfsprogs: 6.2.0 -> 6.3.0 (#233430)
https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/tree/doc/CHANGES?id=f499ee5cf0aa520ed7489249e2e465587ae19c59
2023-05-23 14:07:02 +02:00