diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-06-03 08:18:54 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-06-03 08:32:26 +0200 |
commit | 742d5c3d68c8b83ef594a5aeb870e27255c3726a (patch) | |
tree | e01c6676c54f41095362202d8aa9a838790a4844 /gnu/packages/file-systems.scm | |
parent | 52b4ce275fda390172fcce9797300ba0d5a89d59 (diff) | |
parent | c11b92a8aae6fe7fad0da8257ec28f5009c37b35 (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 1723f6dea2..04f8863807 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017, 2018, 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com> -;;; Copyright © 2017, 2018, 2021 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2017, 2018, 2021, 2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org> @@ -1830,6 +1830,30 @@ the XDG directory specification from @file{~/.@var{name}} to @file{~/.config/@var{name}}.") (license license:gpl2+)))) +(define-public squashfuse + (package + (name "squashfuse") + (version "0.1.105") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vasi/squashfuse") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03aw8pw8694jyrzpnbry05rk9718sqw66kiyq878bbb679gl7224")))) + (build-system gnu-build-system) + (native-inputs (list autoconf automake libtool pkg-config)) + (inputs (list attr fuse xz zlib `(,zstd "lib"))) + (home-page "https://github.com/vasi/squashfuse") + (synopsis "Fuse filesystem to mount squashfs archives") + (description + "Squashfuse lets you mount SquashFS archives in user-space. It supports +almost all features of the SquashFS format, yet is still fast and +memory-efficient.") + (license license:bsd-2))) + (define-public tmsu (package (name "tmsu") |