blob: 41f53ba0b4b980dc877f9a4b6ad30759ffbdda97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package xz {
description = "XZ Utils";
website = "https://tukaani.org/xz";
anitya = 5277;
version* = "5.8.3";
source = remoteGitHubRelease {
suffix = "tukaani-project/xz";
tag = "v"+version;
name = "xz-"+version+".tar.bz2";
checksum = "nCdayphPGdIdVoAZ2hR4vYlhDG9LeVKho_i7ealTud4Vxy5o5dWe0VwFlN7utuUL";
compress = bzip2;
};
exec = make {};
inputs = [ diffutils ];
}
|