;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2013, 2014 Ludovic Courtès ;;; Copyright © 2016, 2019 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages ed) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages compression)) (define-public ed (package (name "ed") (version "1.16") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/ed/ed-" version ".tar.lz")) (sha256 (base32 "0b4b1lwizvng9bvpcjnmpj2i80xz9xw2w8nfff27b2h4mca7mh6g")))) (build-system gnu-build-system) (native-inputs `(("lzip" ,lzip))) (arguments '(#:configure-flags '("CC=gcc") #:phases (modify-phases %standard-phases (add-before 'patch-source-shebangs 'patch-test-suite (lambda _ (substitute* "testsuite/check.sh" (("/bin/sh") (which "sh"))) #t))))) (home-page "https://www.gnu.org/software/ed/") (synopsis "Line-oriented text editor") (description "Ed is a line-oriented text editor: rather than offering an overview of a document, ed performs editing one line at a time. It can be executed both interactively and via shell scripts. Its method of command input allows complex tasks to be performed in an automated way. GNU ed offers several extensions over the standard utility.") (license gpl3+))) 906b239fba2cd291d7'>irc.scm
AgeCommit message (Expand)Author
2023-08-18gnu: Add snuik....* gnu/packages/irc.scm (snuik): New variable. Janneke Nieuwenhuizen
2023-07-30gnu: catgirl: Use G-expressions....* gnu/packages/irc.scm (catgirl)[arguments]: Rewrite as G-expressions. Tobias Geerinckx-Rice
2023-07-30gnu: catgirl: Update to 2.2....* gnu/packages/irc.scm (catgirl): Update to 2.2. Tobias Geerinckx-Rice
2023-07-30gnu: catgirl: Don't use snapshot tarball....* gnu/packages/irc.scm (catgirl)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice
2023-07-30gnu: glirc: Extend description....* gnu/packages/irc.scm (glirc)[description]: Extend. Tobias Geerinckx-Rice
2023-07-30gnu: glirc: Install man page and README.md....* gnu/packages/irc.scm (glirc)[arguments]: Add a new 'install-extra-documentation phase. Tobias Geerinckx-Rice
2023-07-30gnu: Remove duplicate module import from (gnu packages irc)....* gnu/packages/irc.scm: Remove duplicate #:use-module (guix utils). Tobias Geerinckx-Rice
2023-07-23gnu: Add glirc....* gnu/packages/irc.scm (glirc): New public variable. Tobias Geerinckx-Rice
2023-07-28gnu: weechat: Update to 4.0.2....* gnu/packages/irc.scm (weechat): Update to 4.0.2. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> fanquake
2023-06-30gnu: weechat: Update to 4.0.0....* gnu/packages/irc.scm (weechat): Update to 4.0.0. [arguments]: Adjust the configure-flags to continue enable building the docs. Efraim Flashner
2023-05-20gnu: irssi: Update to 1.4.4....* gnu/packages/irc.scm (irssi): Update to 1.4.4. André Batista
2023-04-30gnu: inspircd: Build with mariadb....* gnu/packages/irc.scm (inspircd)[inputs]: Remove mysql. Add mariadb:dev. Efraim Flashner