(use-modules (guix) (guix build-system gnu) (guix licenses)) (package (name "hello") (version "2.10") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/hello/hello-" version ".tar.gz")) (sha256 (base32 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))) (build-system gnu-build-system) (synopsis "Hello, GNU world: An example GNU package") (description "Guess what GNU Hello prints!") (home-page "http://www.gnu.org/software/hello/") (license gpl3+))
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/build-aux/test-env.in
AgeCommit message (Expand)Author
2019-10-16build: Remove references to 'NIX_LOCALSTATE_DIR'....Ludovic Courtès
2019-10-16daemon: Remove traces of 'NIX_ROOT_FINDER'....Ludovic Courtès
2019-02-04daemon: Rename 'NIX_STATE_DIR' and 'NIX_DB_DIR' environment variables....Ludovic Courtès
2018-05-13build: 'test-env' does not 'guix download' non-existent files....Ludovic Courtès
2018-04-22build: Fix possible race condition in 'test-env'....Ludovic Courtès
2017-08-28build: Remove code to download the Guile bootstrap tarball....Ludovic Courtès
2016-06-26daemon: Rename 'NIX_CONF_DIR' to 'GUIX_CONFIGURATION_DIRECTORY'....David Craven
2016-05-04build: Preserve stderr for shell tests....Ludovic Courtès