summary refs log tree commit diff
path: root/pkgs/development/coq-modules/mathcomp/default.nix
blob: a80c934c6c1971484b751b6546dcbf3d76a57c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, fetchurl, coq }:

let param =
  {
    version = "1.6.1";
    url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz;
    sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw";
  }; in

callPackage ./generic.nix {
  name = "coq${coq.coq-version}-mathcomp-${param.version}";
  src = fetchurl { inherit (param) url sha256; };
}