blob: 79b09c314144f557e753d7b7c53c06a9643e1de8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package libffi {
description = "a portable, high level programming interface to various calling conventions";
website = "https://sourceware.org/libffi";
anitya = 1611;
version# = "3.6.0";
source = remoteGitHubRelease {
suffix = "libffi/libffi";
tag = "v"+version;
name = "libffi-"+version+".tar.gz";
checksum = "y3H_jP_eoByznlztjvni3wDfGA4CIJoOh3eRnzjnE3G3Ms3AWk53oOZxkbruvLxM";
compress = gzip;
};
exec = make {};
inputs = [ kernel-headers ];
}
|