;;; 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.15") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/ed/ed-" version ".tar.lz")) (sha256 (base32 "0x6ivy5k0d7dy5z9g8q8nipr89m4qbk2ink2898qq43smp08ji5d")))) (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+))) d=13d79b64719a6dc76129b62a98d62eb86a422d20'>gnunet.scm
AgeCommit message (Expand)Author
2019-11-25gnu: gnunet-gtk: Sort inputs alphabetically....* gnu/packages/gnunet.scm (gnunet-gtk)[inputs]: Sort alphabetically. Efraim Flashner
2019-11-25gnu: gnunet-gtk: Update to 0.11.7....* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.11.7. [version]: Don't inherit version from gnutls. [inputs]: Add gnutls/dane. Efraim Flashner
2019-11-25gnu: gnunet: Update to 0.11.8....* gnu/packages/gnunet.scm: Update to 0.11.8. [inputs]: Add libidn2, miniupnpc, zbar. Remove glib, gmp, gst-plugins-base, libidn, nss, openssl, perl, python-2. [native-inputs]: Add python, xxd, which. [arguments]: Remove configure-flags. Add phase to remove network dependent tests. Re-arrange location of new 'check phase. Efraim Flashner
2019-11-25gnu: gnunet-gtk: Set upstream ftp-directory....* gnu/packages/gnunet.scm (gnunet-gtk)[properties]: New field. Set ftp-directory. Efraim Flashner
2019-10-27gnu: libmicrohttpd: Update to 0.9.68....* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.68. Tobias Geerinckx-Rice
2019-08-27gnu: libmicrohttpd: Update to 0.9.66....* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.66. Ludovic Courtès
2019-08-24gnu: libextractor: Adapt to exiv2 0.27....This fixes a compilation error. * gnu/packages/patches/libextractor-exiv2.patch: New file. * gnu/packages/gnunet.scm (libextractor)[sources]: Use it. * gnu/local.mk (dist_patch_DATA): Add it. Ludovic Courtès
2019-07-09gnu: libmicrohttpd: Update to 0.9.65....* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.65. Tobias Geerinckx-Rice
2019-06-15gnu: libmicrohttpd: Update to 0.9.64....* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.64. Ludovic Courtès
2019-04-04gnu: Move nss & co. to nss.scm....* gnu/packages/gnuzilla.scm (nspr, nss): Move to... * gnu/packages/nss.scm: ... here. New file. * gnu/packages/chromium.scm, gnu/packages/disk.scm, gnu/packages/freedesktop.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/java.scm, gnu/packages/libreoffice.scm, gnu/packages/linux.scm, gnu/packages/mate.scm, gnu/packages/openldap.scm, gnu/packages/package-management.scm, gnu/packages/password-utils.scm, gnu/packages/polkit.scm, gnu/packages/qt.scm, gnu/packages/sssd.scm, gnu/packages/storage.scm, gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust accordingly. * gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm. Ludovic Courtès