~ruther/debugging-channel

ref: b6c94907d7bb541f161151ee85ddff6ca95246c4 debugging-channel/.guix/modules/debugging-module.scm -rw-r--r-- 407 bytes
b6c94907 — Rutherther Update 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(define-module (debugging-module)
  #:use-module (guix gexp)
  #:use-module (guix utils))

(define-public debugging-module-location
  (current-source-directory))

(define-public debugging-module-filename
  (current-filename))

(define-public debugging-hello-world
  (local-file "../../hello-world"))

(define-public two-folders-back
  (canonicalize-path (string-append debugging-module-location "../../")))