diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-31 15:08:42 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-31 18:22:14 +0200 |
commit | 0a40626fd21423715508ca0bff3772c46fb3dc55 (patch) | |
tree | a3642c9453730d9551539d74381b5f12432d1776 | |
parent | 75abbd0cbe2c42f07fa104f97bd206891eb576ef (diff) | |
download | guix-0a40626fd21423715508ca0bff3772c46fb3dc55.tar guix-0a40626fd21423715508ca0bff3772c46fb3dc55.tar.gz |
offload: Use (guix build syscalls).
This is a followup to 4e0ea3eb288c2143b44bf324c64047762c72d3b3.
* guix/scripts/offload.scm: Use (guix build syscalls).
-rw-r--r-- | guix/scripts/offload.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/offload.scm b/guix/scripts/offload.scm index d594be18e5..7db0c9d610 100644 --- a/guix/scripts/offload.scm +++ b/guix/scripts/offload.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,6 +24,7 @@ #:use-module (guix serialization) #:use-module (guix nar) #:use-module (guix utils) + #:use-module ((guix build syscalls) #:select (fcntl-flock)) #:use-module ((guix build utils) #:select (which mkdir-p)) #:use-module (guix ui) #:use-module (srfi srfi-1) |