diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-11-15 15:54:09 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-11-15 15:55:00 -0500 |
commit | 6974c646f96234d0f964cd99e655b147390cbd02 (patch) | |
tree | 36de672e17197db7fd41ed1d7dda79de6dbafddd /km-packages/misc.scm | |
parent | 0063214949e9b282c796eb6657fdcd65a90266da (diff) | |
download | guix-packages-6974c646f96234d0f964cd99e655b147390cbd02.tar.gz |
misc: Remove b4
It's now available upstream (3b77ba78684).
Diffstat (limited to 'km-packages/misc.scm')
-rw-r--r-- | km-packages/misc.scm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/km-packages/misc.scm b/km-packages/misc.scm index ea1fb52..a330ba3 100644 --- a/km-packages/misc.scm +++ b/km-packages/misc.scm @@ -77,36 +77,3 @@ (synopsis "todo") (description "todo") (license license:gpl3))) - -(define-public b4 - (package - (name "b4") - (version "0.5.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://git.kernel.org/pub/scm/utils/b4/b4.git") - (commit (string-append "v" version)))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1w11fiyspyncz2m7njrjfylgzch4azi7560ngd8i733wvjjhg3mj")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'install 'install-manpages - (lambda* (#:key outputs #:allow-other-keys) - (let* ((man (string-append (assoc-ref outputs "out") - "/man/man5/"))) - (mkdir-p man) - (for-each (lambda (file) (install-file file man)) - (find-files "man" "\\.[1-8]$"))) - #t))))) - (inputs - `(("python-requests" ,python-requests))) - (home-page "https://git.kernel.org/pub/scm/utils/b4/b4.git") - (synopsis "A tool to work with public-inbox patches") - (description "todo") - (license license:gpl2+))) |