Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 11b343534578
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 571a1e19e929
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 22, 2018

  1. coqPackages.iris: init at 3.1.0 (#40909)

    vbgl authored and xeji committed May 22, 2018
    Copy the full SHA
    571a1e1 View commit details
Showing with 31 additions and 0 deletions.
  1. +30 −0 pkgs/development/coq-modules/iris/default.nix
  2. +1 −0 pkgs/top-level/coq-packages.nix
30 changes: 30 additions & 0 deletions pkgs/development/coq-modules/iris/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchzip, coq, ssreflect, stdpp }:

stdenv.mkDerivation rec {
version = "3.1.0";
name = "coq${coq.coq-version}-iris-${version}";
src = fetchzip {
url = "https://gitlab.mpi-sws.org/FP/iris-coq/-/archive/iris-${version}/iris-coq-iris-${version}.tar.gz";
sha256 = "0ipdb061jj205avxifshxkpyxxqykigmlxk2n5nvxj62gs3rl5j1";
};

buildInputs = [ coq ];
propagatedBuildInputs = [ ssreflect stdpp ];

enableParallelBuilding = true;

installFlags = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ];

meta = {
homepage = "https://gitlab.mpi-sws.org/FP/iris-coq";
description = "The Coq development of the Iris Project";
inherit (coq.meta) platforms;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.vbgl ];
};

passthru = {
compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
};

}
1 change: 1 addition & 0 deletions pkgs/top-level/coq-packages.nix
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@ let
heq = callPackage ../development/coq-modules/heq {};
HoTT = callPackage ../development/coq-modules/HoTT {};
interval = callPackage ../development/coq-modules/interval {};
iris = callPackage ../development/coq-modules/iris {};
math-classes = callPackage ../development/coq-modules/math-classes { };
mathcomp = callPackage ../development/coq-modules/mathcomp { };
metalib = callPackage ../development/coq-modules/metalib { };