summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-07-29 11:00:51 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-07-29 18:43:54 +0200
commitf1ca8285f8375760d2fa651e125a99120e5050d4 (patch)
treebbe3ca8241160a4b72fdaa674cabd8803d3acfa0 /guix
parent80aff364dbd8d78392582124b51b46b556db7e4c (diff)
The package should know its release date to generate a doap description
Diffstat (limited to 'guix')
-rw-r--r--guix/vkraus/packages/webid-oidc.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/vkraus/packages/webid-oidc.scm b/guix/vkraus/packages/webid-oidc.scm
index 902903c..f120df3 100644
--- a/guix/vkraus/packages/webid-oidc.scm
+++ b/guix/vkraus/packages/webid-oidc.scm
@@ -129,7 +129,7 @@
(variable "LTDL_LIBRARY_PATH")
(files '("lib")))))))
-(define-public (webid-oidc-release version commit hash)
+(define-public (webid-oidc-release version release-date commit hash)
(package
(inherit webid-oidc-snapshot)
(name "webid-oidc")
@@ -145,6 +145,8 @@
`(begin
(with-output-to-file ".tarball-version"
(lambda _ (format #t "~a~%" ,version)))
+ (with-output-to-file ".tarball-release-date"
+ (lambda _ (format #t "~a~%" ,release-date)))
#t))))))
(define-public (webid-oidc-htmlize webid-oidc)