blob: 924b90d167b1acf23ba353fe164375e3e43a6fb3 (
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) slides
```
|