summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-10-08 15:59:54 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-10-08 16:07:28 +0200
commitabd3891ecf852d242b1986218a6cc3b8613daef0 (patch)
tree00954523f8a1ddd3175463b056feaf7ee7790b6d
parent3e63c05b8e809a84490767841d84770f535f2f22 (diff)
guix: Don’t make disfluid-snapshot public, it can’t be built by cuirass
-rw-r--r--ci.scm14
-rw-r--r--guix/vkraus/packages/disfluid.scm2
2 files changed, 14 insertions, 2 deletions
diff --git a/ci.scm b/ci.scm
index 3416e8e..f4d6da1 100644
--- a/ci.scm
+++ b/ci.scm
@@ -71,7 +71,19 @@
(interned-file tmp-dirname "ci-checkout" #:recursive? #t))))
(delete-file-recursively tmp-dirname)
interned))))
- (let ((dist-without-maintainer (dist-package disfluid-snapshot checked-out-index))
+ (let ((dist-without-maintainer
+ (dist-package
+ (package
+ (inherit
+ (disfluid-release
+ ;; These are arbitrary, they will be overriden by what’s in checked-out-index
+ #:version "SNAPSHOT"
+ #:release-date "1970-01-01"
+ #:manual-mdate "1970-01-01"
+ #:commit-id "3e63c05b8e809a84490767841d84770f535f2f22"
+ #:hash "0bf55ajdnjgsa7fp30id28z7ic9kcf2gvs6w1r4ba9yiya9h337q"))
+ (source checked-out-index))
+ checked-out-index))
(version
(car
(string-split
diff --git a/guix/vkraus/packages/disfluid.scm b/guix/vkraus/packages/disfluid.scm
index dedae91..896bd8a 100644
--- a/guix/vkraus/packages/disfluid.scm
+++ b/guix/vkraus/packages/disfluid.scm
@@ -40,7 +40,7 @@
#:use-module (ice-9 optargs)
#:use-module (sxml simple))
-(define-public disfluid-snapshot
+(define disfluid-snapshot
(package
(name "disfluid-snapshot")
(version "SNAPSHOT")