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

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

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