mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: btrfs-progs: Update to 5.14.1.
* gnu/packages/linux.scm (btrfs-progs): Update to 5.14.1. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
73c6459d21
commit
ecbe4ceff2
1 changed files with 4 additions and 6 deletions
|
@ -5361,7 +5361,7 @@ (define-public gpm
|
||||||
(define-public btrfs-progs
|
(define-public btrfs-progs
|
||||||
(package
|
(package
|
||||||
(name "btrfs-progs")
|
(name "btrfs-progs")
|
||||||
(version "5.14")
|
(version "5.14.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kernel.org/linux/kernel/"
|
(uri (string-append "mirror://kernel.org/linux/kernel/"
|
||||||
|
@ -5369,7 +5369,7 @@ (define-public btrfs-progs
|
||||||
"btrfs-progs-v" version ".tar.xz"))
|
"btrfs-progs-v" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0mwxhwws6scjjpfws5xp7988wwwfa46jp5y3kn6jjmjpxiqm85da"))))
|
"0ny5z3x8rqin0aci9qxpjc6dk5y0c1yvgk7353qnv92wai396jnm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out"
|
(outputs '("out"
|
||||||
"static")) ; static versions of the binaries in "out"
|
"static")) ; static versions of the binaries in "out"
|
||||||
|
@ -5380,8 +5380,7 @@ (define-public btrfs-progs
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("\\$\\(DESTDIR\\)\\$\\(udevruledir\\)")
|
(("\\$\\(DESTDIR\\)\\$\\(udevruledir\\)")
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append (assoc-ref outputs "out")
|
||||||
"/lib/udev/rules.d")))
|
"/lib/udev/rules.d")))))
|
||||||
#t))
|
|
||||||
(add-after 'build 'build-static
|
(add-after 'build 'build-static
|
||||||
(lambda _ (invoke "make" "static")))
|
(lambda _ (invoke "make" "static")))
|
||||||
(add-after 'install 'install-bash-completion
|
(add-after 'install 'install-bash-completion
|
||||||
|
@ -5390,8 +5389,7 @@ (define-public btrfs-progs
|
||||||
(bashcomp (string-append out "/etc/bash_completion.d")))
|
(bashcomp (string-append out "/etc/bash_completion.d")))
|
||||||
(mkdir-p bashcomp)
|
(mkdir-p bashcomp)
|
||||||
(copy-file "btrfs-completion"
|
(copy-file "btrfs-completion"
|
||||||
(string-append bashcomp "/btrfs"))
|
(string-append bashcomp "/btrfs")))))
|
||||||
#t)))
|
|
||||||
(add-after 'install 'install-static
|
(add-after 'install 'install-static
|
||||||
(let ((staticbin (string-append (assoc-ref %outputs "static")
|
(let ((staticbin (string-append (assoc-ref %outputs "static")
|
||||||
"/bin")))
|
"/bin")))
|
||||||
|
|
Loading…
Reference in a new issue