1 { lib, mkCoqDerivation, coq, coq-elpi, version ? null }:
3 let hb = mkCoqDerivation {
4 pname = "hierarchy-builder";
7 defaultVersion = with lib.versions; lib.switch coq.coq-version [
8 { case = range "8.18" "8.20"; out = "1.7.0"; }
9 { case = range "8.16" "8.18"; out = "1.6.0"; }
10 { case = range "8.15" "8.18"; out = "1.5.0"; }
11 { case = range "8.15" "8.17"; out = "1.4.0"; }
12 { case = range "8.13" "8.14"; out = "1.2.0"; }
13 { case = range "8.12" "8.13"; out = "1.1.0"; }
14 { case = isEq "8.11"; out = "0.10.0"; }
16 release."1.7.0".sha256 = "sha256-WqSeuJhmqicJgXw/xGjGvbRzfyOK7rmkVRb6tPDTAZg=";
17 release."1.6.0".sha256 = "sha256-E8s20veOuK96knVQ7rEDSt8VmbtYfPgItD0dTY/mckg=";
18 release."1.5.0".sha256 = "sha256-Lia3o156Pbe8rDHOA1IniGYsG5/qzZkzDKdHecfmS+c=";
19 release."1.4.0".sha256 = "sha256-tOed9UU3kMw6KWHJ5LVLUFEmzHx1ImutXQvZ0ldW9rw=";
20 release."1.3.0".sha256 = "17k7rlxdx43qda6i1yafpgc64na8br285cb0mbxy5wryafcdrkrc";
21 release."1.2.1".sha256 = "sha256-pQYZJ34YzvdlRSGLwsrYgPdz3p/l5f+KhJjkYT08Mj0=";
22 release."1.2.0".sha256 = "0sk01rvvk652d86aibc8rik2m8iz7jn6mw9hh6xkbxlsvh50719d";
23 release."1.1.0".sha256 = "sha256-spno5ty4kU4WWiOfzoqbXF8lWlNSlySWcRReR3zE/4Q=";
24 release."1.0.0".sha256 = "0yykygs0z6fby6vkiaiv3azy1i9yx4rqg8xdlgkwnf2284hffzpp";
25 release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h";
26 releaseRev = v: "v${v}";
28 propagatedBuildInputs = [ coq-elpi ];
32 extraInstallFlags = [ "VFILES=structures.v" ];
35 description = "High level commands to declare a hierarchy based on packed classes";
36 maintainers = with maintainers; [ cohencyril siraben ];
37 license = licenses.mit;
41 lib.optionalAttrs (lib.versions.isGe "1.2.0" o.version || o.version == "dev")
42 { buildPhase = "make build"; }
44 lib.optionalAttrs (lib.versions.isGe "1.1.0" o.version || o.version == "dev")
45 { installFlags = [ "DESTDIR=$(out)" ] ++ o.installFlags; }