treewide: remove redundant quotes
This commit is contained in:
@@ -30,7 +30,7 @@ let
|
||||
# COMPUTED using the configuration above (edit with caution) #
|
||||
##############################################################
|
||||
default-mathcomp-version = let v = head (
|
||||
filter (mc: mathcomp-coq-versions."${mc}" coq.coq-version)
|
||||
filter (mc: mathcomp-coq-versions.${mc} coq.coq-version)
|
||||
mathcomp-version-preference ++ ["0.0.0"]);
|
||||
in if v == "0.0.0" then max-mathcomp-version else v;
|
||||
|
||||
@@ -126,9 +126,9 @@ let
|
||||
};
|
||||
};
|
||||
in
|
||||
{"${mathcomp-pkg}" = stdenv.mkDerivation (attrs // overrides attrs);};
|
||||
{${mathcomp-pkg} = stdenv.mkDerivation (attrs // overrides attrs);};
|
||||
|
||||
getAttrOr = a: n: a."${n}" or (throw a.error);
|
||||
getAttrOr = a: n: a.${n} or (throw a.error);
|
||||
|
||||
mathcompCorePkgs_1_7 = mathcompGen "1.7.0";
|
||||
mathcompCorePkgs_1_8 = mathcompGen "1.8.0";
|
||||
|
||||
Reference in New Issue
Block a user