Diego Nicola Barbato
226a3605d6
artwork: Update snapshot to 2f2fe74.
* gnu/artwork.scm (%artwork-repository): Update to 2f2fe74.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
3 years ago
Ludovic Courtès
5387971a9e
artwork: Update snapshot to b975164.
* gnu/artwork.scm (%artwork-repository): Update to b975164.
3 years ago
Ludovic Courtès
5e6a5aeebd
artwork: Update snapshot to e951905.
* gnu/artwork.scm (%artwork-repository): Update to e951905.
3 years ago
Ludovic Courtès
688d1a01e4
artwork: Clone over HTTPS.
Suggested by Leo Famulari <leo@famulari.name>
at <https://lists.gnu.org/archive/html/help-guix/2018-11/msg00039.html >.
* gnu/artwork.scm (%artwork-repository): Switch to HTTPS URL.
4 years ago
Leo Famulari
94db92f78e
artwork: Use a descriptive name for the source directory.
* gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and
use the full commit hash when fetching.
5 years ago
Ludovic Courtès
cf2abac8ec
artwork: Update to latest version.
* gnu/artwork.scm (%artwork-repository): Update.
* gnu/services/xorg.scm (%default-slim-theme-name): Change to "0.x".
* gnu/system/grub.scm (%background-image): Change to
GuixSD-fully-black-4-3.svg.
7 years ago
Ludovic Courtès
a4d8c40f7d
artwork: Update to latest GRUB image.
* gnu/artwork.scm (%artwork-repository): Update to newer snapshot.
7 years ago
Ludovic Courtès
9c09760a78
artwork: Update snapshot to GuixSD branding.
* gnu/artwork.scm (%artwork-repository): Update to new "GuixSD"
branding.
* gnu/system/grub.scm (%background-image, %default-theme): Adjust
accordingly.
8 years ago
Ludovic Courtès
c29b69be2d
artwork: Update snapshot.
* gnu/artwork.scm (%artwork-repository): Update.
8 years ago
Ludovic Courtès
84dfb45821
gnu: Introduce (gnu artwork) module.
* gnu/artwork.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/services/xorg.scm: Use it.
(%artwork-repository): Remove.
* gnu/system/grub.scm: Use it.
(%artwork-repository): Remove.
8 years ago
Ludovic Courtès
b9b8607824
Add (guix monad-repl).
* guix/monad-repl.scm: New file.
* guix.scm: Add it.
* Makefile.am (MODULES): Add it.
* doc/guix.texi (The Store Monad): Document it.
8 years ago
Ludovic Courtès
29decd1f36
Augment (guix).
* guix.scm (%public-modules): Add 'monads' and 'gexp'.
8 years ago
Ludovic Courtès
233e76769a
Update license headers.
Change all license headers, except guix/build/* and ld-wrapper.scm, with
this code:
(use-modules (guix build utils)
(srfi srfi-1))
(fluid-set! %default-port-encoding "UTF-8")
(substitute* (remove (lambda (f)
(or (string-contains f ".tar.")
(string-contains f ".git/")
(string-contains f ".so")
(string-suffix? ".o" f)
(string-suffix? ".a" f)
(string-suffix? ".go" f)
(string-suffix? ".pdf" f)
(string-suffix? ".png" f)
(string-suffix? ".info" f)
(equal? (basename f) "guix-daemon")
(equal? (basename f) "nix-setuid-helper")
(string-contains f "nix-upstream/")
(string-contains f "distro/packages/bootstrap/")))
(find-files "." "\\.[a-z]+$"))
(("^([[:graph:]]+) This file is part of Guix." _ comment-start)
(string-append comment-start " This file is part of GNU Guix."))
(("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start)
(string-append comment-start
" GNU Guix --- Functional package management for GNU\n"))
(("^([[:graph:]]+) Guix is " _ comment-start)
(string-append comment-start " GNU Guix is "))
(("^([[:graph:]]+) along with Guix." _ comment-start)
(string-append comment-start " along with GNU Guix."))
(("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start)
(string-append comment-start " Copyright ©")))
Change headers using C-style comments manually.
10 years ago
Ludovic Courtès
87f5d36630
Remove (guix http) and (guix ftp).
* guix/ftp.scm, guix/http.scm, guix/build/ftp.scm, guix/build/http.scm:
Remove.
* Makefile.am (MODULES): Likewise.
* tests/builders.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/compression.scm, distro/packages/gawk.scm,
distro/packages/gnupg.scm, distro/packages/gperf.scm,
distro/packages/guile.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/lout.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/ncurses.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm: Use
`url-fetch' instead of `http-fetch' and `ftp-fetch'.
* distro/packages/bootstrap.scm: Likewise
(bootstrap-origin): Remove references to `http-fetch' and
`ftp-fetch'.
* guix.scm (%public-modules): Remove `http' and `ftp'; add `download'.
10 years ago
Ludovic Courtès
ddc29a782e
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
10 years ago
Ludovic Courtès
ad8526466c
Remove non-existent module from (guix).
* guix.scm (%public-modules): Remove `snix', since that modules doesn't
exist yet.
10 years ago
Ludovic Courtès
58ddf10ea3
Update the (guix) module.
* guix.scm (%public-modules): Update list of current second-level
modules.
10 years ago
Ludovic Courtès
77d3cf087d
Split (guix) in (guix store) and (guix derivations).
* guix.scm: Move contents to other files. Just aggregate these.
* guix/derivations.scm, guix/store.scm: New files.
10 years ago
Ludovic Courtès
207cba8114
Initial commit.
10 years ago