Skip to content

Commit cfa1a3e

Browse files
committed
Rename alllib -> lib in nix files
1 parent 0902805 commit cfa1a3e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

nix/agda-core.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
> # add an agda2hs argument
55
> # change src to ../. instead of ./.
66
> # add buildTools = [agda2hs];
7-
> # add preBuild = ''make alllib'';
7+
> # add preBuild = ''make lib'';
88
> # make ./nix/agda-core.nix might be able to do it for you
99
8a16,19
1010
> buildTools = [agda2hs];
1111
> preBuild = ''
12-
> make alllib
12+
> make lib
1313
> '';

nix/agda-core.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# add an agda2hs argument
44
# change src to ../. instead of ./.
55
# add buildTools = [agda2hs];
6-
# add preBuild = ''make alllib'';
6+
# add preBuild = ''make lib'';
77
# make ./nix/agda-core.nix might be able to do it for you
88
{ mkDerivation, Agda, ansi-terminal, base, bytestring, containers
99
, deepseq, directory, filepath, lib, mtl, transformers
@@ -15,7 +15,7 @@ mkDerivation {
1515
src = ../.;
1616
buildTools = [agda2hs];
1717
preBuild = ''
18-
make alllib
18+
make lib
1919
'';
2020
isLibrary = true;
2121
isExecutable = true;

0 commit comments

Comments
 (0)