;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Mathieu Othacehe ;;; ;;; 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 platform) #:use-module (guix records) #:export (platform platform? platform-target platform-system platform-linux-architecture)) ;;; ;;; Platform record. ;;; ;; Description of a platform supported by the GNU system. (define-record-type* platform make-platform platform? (target platform-target) ;"x86_64-linux-gnu" (system platform-system) ;"x86_64-linux" (linux-architecture platform-linux-architecture ;"amd64" (default #f))) ?id=4ace6455063297e6de84a9a2477150a6ce9416d8'>commitdiff
AgeCommit message (Expand)Author
2021-11-08gnu: packages: Remove last year's deprecations....Tobias Geerinckx-Rice
2021-10-05gnu: openvpn: Update to 2.5.4....Tobias Geerinckx-Rice
2021-10-05gnu: wireguard-tools: Fix doc installation....Tobias Geerinckx-Rice
2021-10-04gnu: wireguard-tools: Update to 1.0.20210914....Tobias Geerinckx-Rice
2021-07-12gnu: strongswan: Update to 5.9.3....Domagoj Stolfa
2021-07-07gnu: Add bitmask....Raghav Gururajan
2021-06-25gnu: strongswan: Invoke absolute file names in ‘ipsec’ launcher....Tobias Geerinckx-Rice
2021-06-20gnu: openvpn: Update to 2.5.3....Solene Rapenne
2021-06-19gnu: Add missing imports to (gnu packages vpn)....Tobias Geerinckx-Rice
2021-06-19gnu: Move strongswan to (gnu packages vpn)....Tobias Geerinckx-Rice