blob: 6507e0053c53226c78cbcb714012ec53f96293c0 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Download the release tarball.
```
wget https://dl.suckless.org/tools/sent-1.tar.gz
```
Unforuntately, that's a tar bomb. So, extract it carefully into a new directory.
```
mkdir sent
tar -C sent -xvf sent-1.tar.gz
```
Build it using our G-expression based build system.
```
guix build -f make.scm
```
Run sent on the example slides.
```
$(guix build -f make.scm) slides
```
To produce a statically linked executable, build using the `make-static.scm` file.
```
guix build -f make-static.scm
```
|