Skip to content
Snippets Groups Projects
  1. May 07, 2020
    • Nicolas Goaziou's avatar
      doc: Tiny markup fix. · f45baa4a
      Nicolas Goaziou authored
      * doc/guix.texi (Substitute Authentication): Use @samp instead of @code for
      pseudo-code.
      f45baa4a
    • Nicolas Goaziou's avatar
      doc: Remove markup for external package names. · 82426f4d
      Nicolas Goaziou authored
      * doc/guix.texi (Invoking guix import): Remove markup, which is not warranted
      here.
      82426f4d
    • Nicolas Goaziou's avatar
      doc: Use @file instead of @code also for file extensions. · 13b0777f
      Nicolas Goaziou authored
      * doc/guix.texi (Defining Packages):
      (Build Systems):
      (Derivations):
      (Invoking guix import):
      (Printing Services):
      (Installing Debugging Files):
      (Preparing to Use the Bootstrap Binaries): Use @file instead of @code.
      13b0777f
    • Nicolas Goaziou's avatar
      doc: Use @env for environment variables. · 7ebe3163
      Nicolas Goaziou authored
      * doc/guix.texi (Binary Installation):
      (Build Environment Setup):
      (Invoking guix-daemon):
      (Application Setup):
      (After System Installation):
      (Invoking guix package):
      (Proxy Settings):
      (Invoking guix environment):
      (Packages for C Development):
      (Package Modules):
      (Build Systems):
      (The Store):
      (Common Build Options):
      (Invoking guix download):
      (Invoking guix refresh):
      (Using the Configuration System):
      (Locales):
      (Base Services):
      (Networking Services):
      (Sound Services):
      (Continuous Integration):
      (PAM Mount Service):
      (X.509 Certificates): Use @env instead of @code for environment variables.
      7ebe3163
    • Brice Waegeneire's avatar
      gnu: usbguard: Fix warning about 'catch'. · f96ddb60
      Brice Waegeneire authored
      * gnu/packages/hardware.scm (usbguard)[arguments]: Rename phase
      'patch-makefile' to 'patch-build-scripts', patch 'Makefile.in' files
      instead of 'Makefile.am' and fix 'catch' include path.
      [native-inputs]: Remove 'autoconf' and 'automake'.
      f96ddb60
    • Brice Waegeneire's avatar
      gnu: usbguard: Use packaged 'pegtl'. · febd19da
      Brice Waegeneire authored
      * gnu/packages/hardware.scm (usbguard)[arguments]: Remove configure flag
      '--with-bundled-pegtl'.
      [inputs]: Add 'pegtl'
      febd19da
    • Brice Waegeneire's avatar
      gnu: Add pegtl. · 741d2226
      Brice Waegeneire authored
      * gnu/packages/cpp.scm (pegtl): New variable.
      741d2226
    • Nicolas Goaziou's avatar
      doc: Use @option instead of @code. · a87c9086
      Nicolas Goaziou authored
      * doc/guix.texi (Binary Installation):
      (Requirements):
      (Build Environment Setup):
      (Invoking guix-daemon):
      (Application Setup):
      (Invoking guix package):
      (Substitute Server Authorization):
      (Substitution Failure):
      (Invoking guix gc):
      (Invoking guix pull):
      (Invoking guix archive):
      (Invoking guix environment):
      (Invoking guix pack):
      (Defining Packages):
      (Build Systems):
      (The Store):
      (Invoking guix build):
      (Common Build Options):
      (Package Transformation Options):
      (Additional Build Options):
      (Debugging Build Failures):
      (Invoking guix edit):
      (Invoking guix import):
      (Invoking guix refresh):
      (Invoking guix lint):
      (Invoking guix publish):
      (Invoking guix challenge):
      (Base Services):
      (Virtualization Services):
      (Initial RAM Disk):
      (Invoking guix system):
      (Preparing to Use the Bootstrap Binaries):
      (Porting): Use @option instead of @code for command-line options.
      a87c9086
    • Pierre Neidhardt's avatar
      doc: Fix typo in container example. · caf90167
      Pierre Neidhardt authored
      * doc/guix.texi (Invoking `guix environment'): Fix sll -> ssl typo.
      caf90167
    • Pierre Neidhardt's avatar
      doc: Add container example to run a web browser. · 60131df0
      Pierre Neidhardt authored
      * doc/guix.texi (Invoking `guix environment'): Add paragraph and example to
        run Eolie in a guix environment container.  Add `container' cindex for the
        first container example, and the `certificates' cindex for the web browser
        example.
      60131df0
    • Pierre Neidhardt's avatar
      gnu: warsow-qfusion: Remove bundled binaries and inputs. · e5f1f5ce
      Pierre Neidhardt authored
      * gnu/packages/game-development.scm (warsow-qfusion)[source]: Add snippet to
        remove unused bundled binaries and inputs.
      e5f1f5ce
    • Pierre Neidhardt's avatar
      gnu: sbcl-iolib.grovel: Deprecate in favour of sbcl-cffi-grovel. · 3078c05e
      Pierre Neidhardt authored
      * gnu/packages/lisp-xyz.scm (sbcl-iolib.grovel): Deprecate since upstream has
        removed it; they are now using cffi-grovel instead.
      3078c05e
    • Pierre Neidhardt's avatar
      gnu: sbcl-trivial-backtrace: Fix typo in description. · d35a0f14
      Pierre Neidhardt authored
      * gnu/packages/lisp-xyz.scm (sbcl-trivial-backtrace)[description]: Replace
        "On" with "One".
      d35a0f14
    • Jan (janneke) Nieuwenhuizen's avatar
      gnu: glibc/hurd-headers: Cross-build fix for the Hurd. · 1339a03b
      Jan (janneke) Nieuwenhuizen authored
      * gnu/packages/base.scm (glibc/hurd-headers)[native-inputs]: Add mig; when
      cross-building use 32-bit mig.
      1339a03b
    • Jan (janneke) Nieuwenhuizen's avatar
      syscalls: Add ioctl flags for the Hurd. · 598be42d
      Jan (janneke) Nieuwenhuizen authored
      Use
      
          #include <stdio.h>
          #include <net/if.h>
          #include <hurd/ioctl.h>
      
          int
          main ()
          {
            printf ("SIOCSIFFLAGS #x%x\n", SIOCSIFFLAGS);
            printf ("SIOCGIFADDR #x%x\n", SIOCGIFADDR);
            printf ("SIOCSIFADDR #x%x\n", SIOCSIFADDR);
            printf ("SIOCGIFNETMASK #x%x\n", SIOCGIFNETMASK);
            printf ("SIOCSIFNETMASK #x%x\n", SIOCSIFNETMASK);
          #if 0
            printf ("SIOCADDRT #x%x\n", SIOCADDRT);
            printf ("SIOCDELRT #x%x\n", SIOCDELRT);
          #endif
          }
      
      to fill in some blanks.  Adding and removing route apparently not supported.
      
      * guix/build/syscalls.scm (SIOCSIFFLAGS SIOCGIFADDR, SIOCSIFADDR,
      SIOCGIFNETMASK, SIOCSIFNETMASK):
      598be42d
  2. May 06, 2020
Loading