aboutsummaryrefslogtreecommitdiff
path: root/guix.packages
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2018-01-08 15:21:23 +0000
committerng0 <ng0@n0.is>2018-01-08 15:21:23 +0000
commit3e2c2d6c40845d53b2809ec4a224e6d51eea5d73 (patch)
treebf03378e183d5d38299917b72169418f1a2029ec /guix.packages
parentea351cef94af33ccf28c66434c28aefc100ad6e0 (diff)
downloadgnunet-3e2c2d6c40845d53b2809ec4a224e6d51eea5d73.tar.gz
gnunet-3e2c2d6c40845d53b2809ec4a224e6d51eea5d73.zip
clean up contrib: move 2 guix files to the root level. folder structure will be moved to https://c.n0.is/ng0_guix/packages
Diffstat (limited to 'guix.packages')
-rw-r--r--guix.packages44
1 files changed, 44 insertions, 0 deletions
diff --git a/guix.packages b/guix.packages
new file mode 100644
index 000000000..3b2f6cfcd
--- /dev/null
+++ b/guix.packages
@@ -0,0 +1,44 @@
1;;; -*- mode: scheme -*-
2;;; Packages required to develop GNUnet with Guix.
3;;; (See guix package --manifest option for more details on this file).
4
5(use-modules (guix profiles)
6 (gnu packages))
7
8
9(define gnunet-dev-packages
10 (list "glpk"
11 "gnurl"
12 "gstreamer"
13 "gst-plugins-base"
14 "gnutls/dane"
15 "libextractor"
16 "libgcrypt"
17 "libidn"
18 "libunistring"
19 "openssl"
20 "opus"
21 "pulseaudio"
22 "sqlite"
23 "mysql"
24 "postgresql"
25 "zlib"
26 "perl"
27 "jansson"
28 "nss"
29 "glib"
30 "gmp"
31 "glib"
32 "glibc-locales"
33 "bluez"
34 "texlive" ; FIXME: minimize
35 "pkg-config"
36 "autoconf"
37 "automake"
38 "gnu-gettext"
39 "which"
40 "texinfo-5"
41 "libtool"))
42
43
44(map specification->package gnunet-dev-packages)