mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
226299e1a2
The Everthing module is not part of a library and should therefore not be copied to the nix store. This is particularly bad, if the Everything module is defined in an agda library included directory, e.g. consider an agda-lib with include: . and Everything.agda in the project root (.), in which case the Everything module would become part of the library. If multiple such projects are in the dependency tree, the Everything module becomes ambiguous and the build would fail.
11 lines
336 B
Nix
11 lines
336 B
Nix
{ lib }:
|
|
{
|
|
/* Returns the Agda interface file to a given Agda file.
|
|
*
|
|
* Examples:
|
|
* interfaceFile "Everything.agda" == "Everything.agdai"
|
|
* interfaceFile "src/Everything.lagda.tex" == "src/Everything.agdai"
|
|
*/
|
|
interfaceFile = agdaFile: lib.head (builtins.match ''(.*\.)l?agda(\.(md|org|rst|tex))?'' agdaFile) + "agdai";
|
|
}
|