aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-08-14 18:05:07 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-08-14 18:24:46 +0200
commit7c6d82e2054905cf390e5a2622860ae16b127d06 (patch)
treedbe5267636e3a8f41b97f7e17c4a9a518fa5e88e
parent159ef2c0c6e2c6a98e86bf35e9e9f8233dd4c852 (diff)
downloadvendor_lineage-GNUtoo/python-mako.tar.gz
vendor_lineage-GNUtoo/python-mako.tar.bz2
vendor_lineage-GNUtoo/python-mako.zip
[WIP] Initial work for using a guix toolchainGNUtoo/python-mako
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rwxr-xr-xbuild-toolchain.sh10
-rw-r--r--guix/manifest.scm3
2 files changed, 13 insertions, 0 deletions
diff --git a/build-toolchain.sh b/build-toolchain.sh
new file mode 100755
index 00000000..5ff85f8b
--- /dev/null
+++ b/build-toolchain.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+thisdir="$(dirname $(realpath $0))"
+
+GUIX_EXTRA_PROFILES="${HOME}/.config/replicant/guix"
+mkdir -p "${GUIX_EXTRA_PROFILES}/replicant-10"
+
+guix package \
+ --manifest="${thisdir}/guix/manifest.scm" \
+ --profile="${GUIX_EXTRA_PROFILES}/replicant-10/toolchain"
+
diff --git a/guix/manifest.scm b/guix/manifest.scm
new file mode 100644
index 00000000..c0841c7d
--- /dev/null
+++ b/guix/manifest.scm
@@ -0,0 +1,3 @@
+(specifications->manifest
+ '("python2"
+ "python2-mako"))