mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
31 lines
818 B
Nix
31 lines
818 B
Nix
{stdenv, fetchurl, coq, unzip}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "coq-heq-${coq.coq-version}-${version}";
|
|
version = "0.92";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.mpi-sws.org/~gil/Heq/download/Heq-${version}.zip";
|
|
sha256 = "03y71c4qs6cmy3s2hjs05g7pcgk9sqma6flj15394yyxbvr9is1p";
|
|
};
|
|
|
|
buildInputs = with coq.ocamlPackages; [ ocaml camlp5 unzip ];
|
|
propagatedBuildInputs = [ coq ];
|
|
|
|
preBuild = "cd src";
|
|
|
|
installFlags = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.mpi-sws.org/~gil/Heq/";
|
|
description = "Heq : a Coq library for Heterogeneous Equality";
|
|
maintainers = with maintainers; [ jwiegley ];
|
|
platforms = coq.meta.platforms;
|
|
};
|
|
|
|
passthru = {
|
|
compatibleCoqVersions = v: !stdenv.lib.versionAtLeast v "8.8";
|
|
};
|
|
}
|