;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019, 2020, 2021, 2024 Oleg Pykhalov ;;; Copyright © 2020 Peng Mei Yu ;;; ;;; 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 services nix) #:use-module (gnu packages admin) #:use-module (gnu packages bash) #:use-module (gnu packages package-management) #:us
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Newsome <jnewsome@torproject.org>2022-08-03 20:47:19 -0500
committerMarius Bakke <marius@gnu.org>2022-08-04 12:54:06 +0200
commited9400474068b4d6a65bae2f1b356d66626b3720 (patch)
treea6295ba603139b0b37ed890d72092605fab71c9c /bootstrap
parentf9d947a38ced76ee34d3efb860678ac6bd23851b (diff)
downloadguix-ed9400474068b4d6a65bae2f1b356d66626b3720.tar.gz
guix-ed9400474068b4d6a65bae2f1b356d66626b3720.zip
gnu: rust: Use rust-1.60.0
* gnu/packages/rust.scm (rust-1.58, rust-1.59, rust-1.60, rust): Add rust-1.58, rust-1.59, and rust-1.60, and update rust to be based on rust-1.60 instead of rust-1.57. Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'bootstrap')
0 files changed, 0 insertions, 0 deletions
t #~(make-forkexec-constructor (list (string-append #$package "/bin/nix-daemon") #$@extra-options) #:environment-variables (list (string-append "TMPDIR=" #$build-directory) "PATH=/run/current-system/profile/bin"))) (respawn? #f) (stop #~(make-kill-destructor))))))) (define nix-service-type (service-type (name 'nix) (extensions (list (service-extension shepherd-root-service-type nix-shepherd-service) (service-extension account-service-type nix-accounts) (service-extension activation-service-type nix-activation) (service-extension etc-service-type nix-service-etc) (service-extension profile-service-type (compose list nix-configuration-package)) (service-extension file-system-service-type (const %immutable-nix-store)))) (description "Run the Nix daemon.") (default-value (nix-configuration)))) ;;; nix.scm ends here