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: 7044058ef779
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1bb56de88b61
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 24, 2019

  1. coqPackages.coq-bits: init at 20190812

    Ptival authored and vbgl committed Oct 24, 2019
    Copy the full SHA
    1bb56de View commit details
Showing with 39 additions and 0 deletions.
  1. +38 −0 pkgs/development/coq-modules/coq-bits/default.nix
  2. +1 −0 pkgs/top-level/coq-packages.nix
38 changes: 38 additions & 0 deletions pkgs/development/coq-modules/coq-bits/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ stdenv, fetchFromGitHub, coq, mathcomp-algebra }:

let
version = "20190812";
in

stdenv.mkDerivation {
name = "coq${coq.coq-version}-coq-bits-${version}";

src = fetchFromGitHub {
owner = "coq-community";
repo = "coq-bits";
rev = "f74498a6c67e97d9565e139d62be8eaae7111f06";
sha256 = "1ibg37qxgkmpbpvc78qcb179bcnzl149z1kzwdm8n98xk5ibavrf";
};

buildInputs = [ coq ];
propagatedBuildInputs = [ mathcomp-algebra ];

enableParallelBuilding = true;

installPhase = ''
make -f Makefile CoqMakefile
make -f CoqMakefile COQLIB=$out/lib/coq/${coq.coq-version}/ install
'';

meta = with stdenv.lib; {
homepage = https://github.com/coq-community/coq-bits;
description = "A formalization of bitset operations in Coq";
license = licenses.asl20;
maintainers = with maintainers; [ ptival ];
platforms = coq.meta.platforms;
};

passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" ];
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/coq-packages.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ let
category-theory = callPackage ../development/coq-modules/category-theory { };
Cheerios = callPackage ../development/coq-modules/Cheerios {};
CoLoR = callPackage ../development/coq-modules/CoLoR {};
coq-bits = callPackage ../development/coq-modules/coq-bits {};
coq-elpi = callPackage ../development/coq-modules/coq-elpi {};
coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {};
coq-extensible-records = callPackage ../development/coq-modules/coq-extensible-records {};