unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob e3ec99d85c7fe3ed4bce3502f7e4803adfbea1dc 1429 bytes (raw)
name: gnu/packages/envstore.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
(define-module (gnu packages envstore)
  #:use-module (guix)
  #:use-module (guix packages)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (guix download)
  #:use-module (guix utils)
  #:use-module (guix licenses))

(define-public envstore
  (package
    (name "envstore")
    (version "2.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/derf/" name "/archive/"
                           version ".tar.gz"))
       (sha256
        (base32 "097yd6w0fql8a3xh0gmz8bf40w61j4893rp8c28rngrrk80bk9a8"))))
    (build-system gnu-build-system)
    (arguments
     `(#:test-target "test"
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)
         (replace 'build
           (lambda _
             (setenv "CC" (which "gcc"))
             (system* "make")))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (setenv "PREFIX" "/")
               (setenv "DESTDIR" out)
               (system* "make" "install")))))))
    (home-page "https://finalrewind.org/projects/envstore/")
    (synopsis "Save and restore environment variables")
    (description "Envstore is a program for sharing environment variables
between various shells or commands.")
    (license
     (non-copyleft "http://www.wtfpl.net/txt/copying/"))))

debug log:

solving e3ec99d ...
found e3ec99d in https://yhetil.org/guix-devel/87zirssmjz.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me/

applying [1/1] https://yhetil.org/guix-devel/87zirssmjz.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me/
diff --git a/gnu/packages/envstore.scm b/gnu/packages/envstore.scm
new file mode 100644
index 0000000..e3ec99d

Checking patch gnu/packages/envstore.scm...
Applied patch gnu/packages/envstore.scm cleanly.

index at:
100644 e3ec99d85c7fe3ed4bce3502f7e4803adfbea1dc	gnu/packages/envstore.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).