From cf32c21ecd3d9454e914db0c608d838c0790e1d1 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 6 Dec 2021 09:35:44 +0100 Subject: gnu: perl-math-cephes: Build reproducibly. * gnu/packages/perl-maths.scm (perl-math-cephes)[source]: Sort result of readdir. --- gnu/packages/perl-maths.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/perl-maths.scm b/gnu/packages/perl-maths.scm index 4f70c85fcf..b1110f94d2 100644 --- a/gnu/packages/perl-maths.scm +++ b/gnu/packages/perl-maths.scm @@ -35,7 +35,12 @@ version ".tar.gz")) (sha256 (base32 - "18c3xg53d1vv7hlj43601jj7ks119fm6ndpwpv94irr2905806jn")))) + "18c3xg53d1vv7hlj43601jj7ks119fm6ndpwpv94irr2905806jn")) + ;; For reproducibility + (modules '((guix build utils))) + (snippet + '(substitute* "libmd/Makefile.PL" + (("readdir DIR") "sort readdir DIR"))))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Math-Cephes") (synopsis "Perl interface to the Cephes math library") -- cgit v1.2.3 aryrefslogtreecommitdiff
path: root/tests/guix-home.sh
AgeCommit message (Expand)Author
2023-04-21tests: Fix checks for expected failures....Eric Bavier
2023-03-26tests: Fix guix-home.sh when guix isn't installed...Ting-Wei Lan
2023-01-09home: environment-variables: Fix escaping....Andrew Tropin
2023-01-09home: environment-variables: Return support for file-likes and gexps....Andrew Tropin
2023-01-05home: services: environment-variables: Add support for literal strings....Ludovic Courtès
2022-08-05tests: Make tests inside container reproducible....Andrew Tropin
2022-07-14home: services: environment-variables: Double-quote values....Ludovic Courtès
2022-07-14home: services: shells: Double-quote environment variable values....Ludovic Courtès
2022-04-19tests: Adjust 'guix home' test to 'home-files-service-type' changes....Ludovic Courtès
2022-03-19guix home: Add 'container' command....Ludovic Courtès
2022-03-18guix home: Implement the 'extension-graph' and 'shepherd-graph' actions....Ludovic Courtès
2022-03-10tests: Check 'guix home reconfigure' for a second generation....Ludovic Courtès
2022-03-10tests: Simplify use of 'local-file' in 'tests/guix-home.sh'....Ludovic Courtès
2022-03-10tests: Make sure 'guix home reconfigure' backs up files....Ludovic Courtès
2021-10-09home: services: configuration: Support file-like objects....Oleg Pykhalov
2021-10-09tests: Add guix-home.sh....Oleg Pykhalov