blob: 8ce41894a3ce35c46ff862d056f4756b1af68e45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package libgd {
description = "an open source code library for the dynamic creation of images";
website = "https://libgd.github.io";
anitya = 880;
version# = "2.3.3";
source = remoteGitHubRelease {
suffix = "libgd/libgd";
tag = "gd-"+version;
name = "libgd-"+version+".tar.gz";
checksum = "8T-sh1_FJT9K9aajgxzh8ot6vWIF-xxjcKAHvTak9MgGUcsFfzP8cAvvv44u2r36";
compress = gzip;
};
env = [
"TMPDIR=/dev/shm/gd",
];
early = "\nmkdir /dev/shm/gd\n";
exec = make {};
inputs = [ zlib ];
runtime = [ zlib ];
}
|