mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
gnu: fish: Remove bundled code.
* gnu/packages/shells.scm (fish)[source]: Add snippet to remove bundled pcre2 source.
This commit is contained in:
parent
437af9e26c
commit
5c33e79ada
1 changed files with 6 additions and 1 deletions
|
@ -15,6 +15,7 @@
|
|||
;;; Copyright © 2019, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -107,7 +108,11 @@ (define-public fish
|
|||
"releases/download/" version "/"
|
||||
"fish-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1vblmb3x2k2cb0db5jdyflppnlqsm7i6jjaidyhmvaaw7ch2gffm"))))
|
||||
(base32 "1vblmb3x2k2cb0db5jdyflppnlqsm7i6jjaidyhmvaaw7ch2gffm"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(delete-file-recursively "pcre2-10.32") #t))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("fish-foreign-env" ,fish-foreign-env)
|
||||
|
|
Loading…
Reference in a new issue