tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
compcert: enable for Coq 9.0.1
Vincent Laporte
6 months ago
092ff7a6
2e62a597
+13
1 changed file
expand all
collapse all
unified
split
pkgs
development
coq-modules
compcert
default.nix
+13
pkgs/development/coq-modules/compcert/default.nix
reviewed
···
303
303
})
304
304
];
305
305
}
306
306
+
{
307
307
+
cases = [
308
308
+
(isEq "9.0")
309
309
+
(isEq "3.16")
310
310
+
];
311
311
+
out = [
312
312
+
# Support for Coq 9.0.1
313
313
+
(fetchpatch {
314
314
+
url = "https://github.com/AbsInt/CompCert/commit/a962ef9da0fb4ef2a4314ccedd111eb248e42cf2.patch";
315
315
+
hash = "sha256-ipYqcfcgz3cKyI1NGSgfOgiVdV1WUwlv6DVB1S1hJvw=";
316
316
+
})
317
317
+
];
318
318
+
}
306
319
]
307
320
[ ];
308
321
});