summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-12-20 00:37:41 +0100
committerLudovic Courtès <ludo@gnu.org>2013-12-20 00:37:41 +0100
commit971cb56dd0c1a1cb265d2adfe41730cd2f8c5c22 (patch)
tree76bb5cddb8bf583f6bd05eef81364bfe004bfcaf /TODO
parent3476ded934dc0beab1801d7fcdcc37b5c17bbf01 (diff)
Update 'TODO'.
Diffstat (limited to 'TODO')
-rw-r--r--TODO49
1 files changed, 26 insertions, 23 deletions
diff --git a/TODO b/TODO
index 10326ec2ac5..c79a2c6644a 100644
--- a/TODO
+++ b/TODO
@@ -48,17 +48,6 @@ package.el is quite monolithic, but we may be able to reuse/extend
48 48
49** add guile-ncurses interface 49** add guile-ncurses interface
50 50
51* extend <origin>
52** add OpenPGP signatures:
53
54 (origin
55 (method http-fetch)
56 (uri "http://.../foo.tgz")
57 (signature-uri (string-append uri ".sig"))
58 (signer-openpgp-fingerprint "..."))
59
60** allow <origin> to be a derivation/package or a file
61
62* extend <package> 51* extend <package>
63 52
64** add ‘recommends’ field 53** add ‘recommends’ field
@@ -84,28 +73,45 @@ create a new ‘dir’.
84 ("i3" ,p3))) 73 ("i3" ,p3)))
85#+END_SRC 74#+END_SRC
86 75
76* MAYBE use HOP-like escapes to refer to inputs in build-side code
87 77
88* synchronize package descriptions with GSRC and/or the [[http://directory.fsf.org][FSD]] 78Instead of doing things like:
79
80#+BEGIN_SRC scheme
81 (inputs `(("foo" ,foo)))
82 (arguments '(#:configure-flags
83 (list (string-append "--with-foo="
84 (assoc-ref %build-inputs "foo")))))
85#+END_SRC
86
87Allow things like:
88
89#+BEGIN_SRC scheme
90 (inputs (list foo))
91 (arguments ~(#:configure-flags
92 (list (string-append "--with-foo=" $foo))))
93
94#+END_SRC
95
96... where '~' is 'build-quote' and '$' is 'build-unquote'. Better yet,
97automatically compute the list of references of an expression passed to
98'derivation-expression'.
99
100Use a [[http://dorophone.blogspot.fr/2011/09/scheme-syntax-is-monad.html][monad]] for the syntax.
101
102* synchronize non-GNU package descriptions with the [[http://directory.fsf.org][FSD]]
89 103
90Meta-data for GNU packages, including descriptions and synopses, can be 104Meta-data for GNU packages, including descriptions and synopses, can be
91dumped from the FSD: 105dumped from the FSD:
92http://directory.fsf.org/wiki?title=GNU/Export&action=purge . 106http://directory.fsf.org/wiki?title=GNU/Export&action=purge .
93We could periodically synchronize with that. 107We could periodically synchronize with that.
94 108
95See http://lists.gnu.org/archive/html/bug-guix/2013-04/msg00120.html for info
96on how to synchronize with GSRC's descriptions.
97
98* add a guildhall build system 109* add a guildhall build system
99 110
100The Guildhall is Guile’s packaging system. It should be easy to add a 111The Guildhall is Guile’s packaging system. It should be easy to add a
101‘guildhall-build-system’ that does the right thing based on guildhall 112‘guildhall-build-system’ that does the right thing based on guildhall
102recipes. 113recipes.
103 114
104* build-expression->derivation: define `%system' in the builder
105
106Would allow build expressions to have system-dependent code, like
107`glibc-dynamic-linker'.
108
109* add ‘allowed-references’ in <package> 115* add ‘allowed-references’ in <package>
110 116
111[[file:~/src/nix/src/libstore/build.cc::if%20(drv.env.find("allowedReferences")%20!%3D%20drv.env.end())%20{][See how Nix implements that internally]]. 117[[file:~/src/nix/src/libstore/build.cc::if%20(drv.env.find("allowedReferences")%20!%3D%20drv.env.end())%20{][See how Nix implements that internally]].
@@ -126,9 +132,6 @@ run when that is defined.
126Would download a substitute, and compare its contents against a (hopefully 132Would download a substitute, and compare its contents against a (hopefully
127locally-built) copy. 133locally-built) copy.
128 134
129* guix package
130
131** add ‘--list-generations’, and ‘--delete-generations’
132 135
133* guix build utils 136* guix build utils
134** MAYBE Change ‘ld-wrapper’ to add RPATH for libs passed by file name 137** MAYBE Change ‘ld-wrapper’ to add RPATH for libs passed by file name