gnu: fasd: Update to 1.0.2.

* gnu/packages/admin.scm (fasd): Update to 1.0.2.
[source]: Use project fork that integrates recent pull requests as the
original project is unmaintained and archived.
[home-page]: Update.
[description]: Improve formatting.
[license]: Change to expat (MIT) license as "LICENSE" file of the project
contains MIT license.

Change-Id: I0070c394a9a8b80ac137728831c0eb7a0e15e2b4
Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Artyom V. Poptsov 2024-05-25 10:15:23 +03:00 committed by Christopher Baines
parent 13d5e6f84a
commit e51d98d8e9
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -65,6 +65,7 @@
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Tomás Ortín Fernández <tomasortin@mailbox.org> ;;; Copyright © 2023 Tomás Ortín Fernández <tomasortin@mailbox.org>
;;; Copyright © 2024 dan <i@dan.games> ;;; Copyright © 2024 dan <i@dan.games>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -3234,31 +3235,31 @@ (define-public autojump
(define-public fasd (define-public fasd
(package (package
(name "fasd") (name "fasd")
(version "1.0.1") (version "1.0.2")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/clvv/fasd") (url "https://github.com/whjvenyl/fasd")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1awi71jdv3mhjrmar2d4z1i90kn7apd7aq1w31sh6w4yibz9kiyj")))) "0q72a54dcahc9pan5qkmnsvpqiqgjjxwdxzzm8pxzylpr329jjyh"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:phases (modify-phases %standard-phases `(#:phases (modify-phases %standard-phases
(delete 'configure)) ;no configuration (delete 'configure)) ;no configuration
#:tests? #f ;no tests #:tests? #f ;no tests
#:make-flags (list (string-append "PREFIX=" %output)))) #:make-flags (list (string-append "PREFIX=" %output))))
(home-page "https://github.com/clvv/fasd") (home-page "https://github.com/whjvenyl/fasd")
(synopsis "Quick access to files and directories for shells") (synopsis "Quick access to files and directories for shells")
(description (description
"Fasd (pronounced similar to \"fast\") is a command-line productivity "Fasd (pronounced similar to \"fast\") is a command-line productivity booster.
booster. Fasd offers quick access to files and directories for POSIX shells. Fasd offers quick access to files and directories for POSIX shells. It is inspired
It is inspired by tools like autojump, z, and v. Fasd keeps track of files by tools like @code{autojump}, @code{z}, and @code{v}. Fasd keeps track of files and
and directories you have accessed so that you can quickly reference them in directories you have accessed so that you can quickly reference them in the command
the command line.") line.")
(license license:x11))) (license license:expat)))
(define-public iftop (define-public iftop
(package (package