coqPackages.deriving: init at 0.1.0

authored by Vincent Laporte and committed by Vincent Laporte 78085b01 d0f06b9e

+30
+29
pkgs/development/coq-modules/deriving/default.nix
··· 1 + { lib, mkCoqDerivation, coq, version ? null 2 + , ssreflect 3 + }: 4 + with lib; 5 + 6 + mkCoqDerivation { 7 + pname = "deriving"; 8 + owner = "arthuraa"; 9 + 10 + inherit version; 11 + defaultVersion = with versions; switch coq.coq-version [ 12 + { case = range "8.11" "8.14"; out = "0.1.0"; } 13 + ] null; 14 + 15 + releaseRev = v: "v${v}"; 16 + 17 + release."0.1.0".sha256 = "sha256:11crnjm8hyis1qllkks3d7r07s1rfzwvyvpijya3s6iqfh8c7xwh"; 18 + 19 + propagatedBuildInputs = [ ssreflect ]; 20 + 21 + mlPlugin = true; 22 + 23 + meta = { 24 + description = "Generic instances of MathComp classes"; 25 + license = licenses.mit; 26 + maintainers = [ maintainers.vbgl ]; 27 + }; 28 + 29 + }
+1
pkgs/top-level/coq-packages.nix
··· 37 37 coqtail-math = callPackage ../development/coq-modules/coqtail-math {}; 38 38 coquelicot = callPackage ../development/coq-modules/coquelicot {}; 39 39 corn = callPackage ../development/coq-modules/corn {}; 40 + deriving = callPackage ../development/coq-modules/deriving {}; 40 41 dpdgraph = callPackage ../development/coq-modules/dpdgraph {}; 41 42 equations = callPackage ../development/coq-modules/equations { }; 42 43 fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};