blob: 67d88f0054c80b02832b0fb14bf74339acab1746 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Build an environment that includes all the regular and development
# dependencies of Cuirass.
set -e -x
guix environment --ad-hoc \
autoconf automake bash coreutils findutils gawk git grep \
guile guile-json guile-sqlite3 guix gzip less libgcrypt make \
perl pkg-config sed sqlite tar "$@"
|