fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, mkCoqDerivation, coq, coq-elpi, version ? null }:
2
3mkCoqDerivation {
4 pname = "trakt";
5 owner = "ecranceMERCE";
6
7 release."1.0".rev = "d1c9daba8fe0584b526047862dd27ddf836dbbf2";
8 release."1.0".sha256 = "sha256-Qhw5fWFYxUFO2kIWWz/og+4fuy9aYG27szfNk3IglhY=";
9
10 inherit version;
11 defaultVersion = with lib.versions; lib.switch [ coq.version ] [
12 { cases = [ (range "8.13" "8.17") ]; out = "1.0"; }
13 ] null;
14
15 propagatedBuildInputs = [ coq-elpi ];
16
17 meta = with lib; {
18 description = "A generic goal preprocessing tool for proof automation tactics in Coq";
19 maintainers = with maintainers; [ siraben ];
20 license = licenses.cecill-b;
21 platforms = platforms.unix;
22 };
23}