tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
factor-lang: fix upgrade to include changes from 8d999d4
olus2000
2 years ago
85d04f27
044b0ec9
+6
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
factor-lang
factor99.nix
+6
pkgs/development/compilers/factor-lang/factor99.nix
···
150
150
done)> $out/lib/factor/ld.so.cache
151
151
152
152
make -j$NIX_BUILD_CORES linux-x86-64
153
153
+
printf "First build from upstream boot image\n" >&2
154
154
+
./build.sh bootstrap
155
155
+
printf "Rebuild boot image\n" >&2
156
156
+
./factor -script -e='"unix-x86.64" USING: system bootstrap.image memory ; make-image save 0 exit'
157
157
+
printf "Second build from local boot image\n" >&2
153
158
./build.sh bootstrap
154
159
runHook postBuild
155
160
'';
···
214
219
license = licenses.bsd2;
215
220
maintainers = with maintainers; [ vrthra spacefrogg ];
216
221
platforms = lib.intersectLists platforms.x86_64 platforms.linux;
222
222
+
mainProgram = "factor";
217
223
};
218
224
}