File: default.nix

package info (click to toggle)
mathcomp-real-closed 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 800 kB
  • sloc: makefile: 28
file content (12 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
{ config ? {}, withEmacs ? false, print-env ? false, do-nothing ? false,
  update-nixpkgs ? false, ci-matrix ? false,
  override ? {}, ocaml-override ? {}, global-override ? {},
  bundle ? null, job ? null, inNixShell ? null, src ? ./.,
}@args:
let auto = fetchGit {
  url = "https://github.com/coq-community/coq-nix-toolbox.git";
  ref = "master";
  rev = import .nix/coq-nix-toolbox.nix;
};
in
import auto ({inherit src;} // args)