aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/bison.az
blob: 67aed088772c763bc35090e015c9c9d40fe0489a (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
26
27
28
29
30
package bison {
	description = "a general-purpose parser generator";
	website = "https://www.gnu.org/software/bison";
	anitya = 193;

	version# = "3.8.2";
	source = remoteTar {
		url = "https://mirrors.kernel.org/gnu/bison/bison-"+version+".tar.gz";
		checksum = "BhRM6K7URj1LNOkIDCFDctSErLS-Xo5d9ba9seg10o6ACrgC1uNhED7CQPgIY29Y";
		compress = gzip;
	};

	toyboxEarly = true;
	exec = make {
		defaults = false;
		check = [
			"TESTSUITEFLAGS=" + jobsFlagE + "' " + skipGNUTests {
				tests = [
					// GNU-isms not implemented in toybox
					168, 170, 623,
					// clang miscompiles (SIGILL)
					764,
				];
			} + "'",
			"check",
		];
	};

	inputs = [ m4 ];
}