mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add squashfuse.
* gnu/packages/file-systems.scm (squashfuse): New variable.
This commit is contained in:
parent
10d3f8aa7b
commit
d019053aca
1 changed files with 25 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017, 2018, 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018, 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
|
;;; 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 © 2018 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019-2023 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
||||||
|
@ -1830,6 +1830,30 @@ (define-public rewritefs
|
||||||
@file{~/.config/@var{name}}.")
|
@file{~/.config/@var{name}}.")
|
||||||
(license license:gpl2+))))
|
(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
|
(define-public tmsu
|
||||||
(package
|
(package
|
||||||
(name "tmsu")
|
(name "tmsu")
|
||||||
|
|
Loading…
Reference in a new issue