Skip to content
Snippets Groups Projects
Commit 1d000ae7 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: shadow: Make source file timestamps deterministic.

* gnu/packages/admin.scm (shadow)[arguments]: Add 'reset-timestamps'
  phase.
parent 6c110833
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,16 @@ (define-public shadow
(delete-file (string-append bin "/groups"))
(for-each delete-file (find-files man "^groups\\."))
#t))
%standard-phases))))
(alist-cons-after
'unpack 'reset-timestamps
(lambda _
;; FIXME: Reset the file timestamps here, until the
;; 'unpack' phase does it for us. See
;; <https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00098.html>.
(for-each (lambda (file)
(utime file 0 0 0))
(find-files "." "")))
%standard-phases)))))
(inputs (if (string-suffix? "-linux"
(or (%current-target-system)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment