about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/coq-modules/Cheerios/default.nix
blob: 6c5216f0d018b71d8ee128b1e1a8d8f95459bf50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, mkCoqDerivation, coq, StructTact, version ? null }:

with lib; mkCoqDerivation {
  pname   = "cheerios";
  owner   = "uwplse";
  inherit version;
  defaultVersion = if versions.isGe "8.6" coq.coq-version then "20200201" else null;
  release."20200201".rev    = "9c7f66e57b91f706d70afa8ed99d64ed98ab367d";
  release."20200201".sha256 = "1h55s6lk47bk0lv5ralh81z55h799jbl9mhizmqwqzy57y8wqgs1";

  propagatedBuildInputs = [ StructTact ];
  preConfigure = "patchShebangs ./configure";
}