blob: fdf3e1af90eafd2eace8b305bef0ed8ebb071058 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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) sent/example
```
|