diff options
Diffstat (limited to 'src/xyz')
-rw-r--r-- | src/xyz/euandreh/packages.scm (renamed from src/xyz/euandreh/packages/euandreh.scm) | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/xyz/euandreh/packages/euandreh.scm b/src/xyz/euandreh/packages.scm index f959db1..2ee6f64 100644 --- a/src/xyz/euandreh/packages/euandreh.scm +++ b/src/xyz/euandreh/packages.scm @@ -1,4 +1,4 @@ -(define-module (xyz euandreh packages euandreh) +(define-module (xyz euandreh packages) #:use-module (json) #:use-module ((ice-9 textual-ports) #:prefix textual-ports:) #:use-module ((guix licenses) #:prefix license:) @@ -43,7 +43,7 @@ (let* ((json-file (canonicalize-path (string-append (current-source-directory) - "/../../../../packages.json"))) + "/../../../paku.json"))) (packages (call-with-input-file json-file json->scm))) (map (lambda (package) (euandreh-package @@ -51,11 +51,5 @@ (assoc-ref package "version-prefix") (assoc-ref package "version") (assoc-ref package "check-inputs") - (content-hash (assoc-ref package "tarbal-sha256")))) ; FIXME + (content-hash (assoc-ref package "tarbal-sha256")))) (vector->list (assoc-ref packages "packages")))) - -;; FIXME: the define-public isn't being created -(define-public fallible - (euandreh-package "fallible" "" "4498c9f46de83f9bdbd053a27e855f37a2df0dd2" #("valgrind") (content-hash #f))) - -fallible |