(define-module (content-addressed)) (use-modules (guix) (guix build-system gnu) (guix licenses) (gnu packages perl)) (define-public sed (package (name "sed") (version "4.8") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/zed/sed-" version ".tar.gz")) (sha256 (base32 "1yy33kiwrxrwj2nxa4fg15bvmwyghqbs8qwkdvy5phm784f7brjq")))) (build-system gnu-build-system) (synopsis "Stream editor") (native-inputs `(("perl" ,perl))) ;for tests (description "Sed is a non-interactive, text stream editor. It receives a text input from a file or from standard input and it then applies a series of text editing commands to the stream and prints its output to standard output. It is often used for substituting text patterns in a stream. The GNU implementation offers several extensions over the standard utility.") (license gpl3+) (home-page "https://www.gnu.org/software/sed/"))) sed