tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fpc: add license + homepage
Markus Kowalewski
7 years ago
49ee72b7
456a1346
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
fpc
default.nix
+6
-4
pkgs/development/compilers/fpc/default.nix
···
22
22
makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc";
23
23
24
24
installFlags = "INSTALL_PREFIX=\${out}";
25
25
-
25
25
+
26
26
postInstall = ''
27
27
for i in $out/lib/fpc/*/ppc*; do
28
28
ln -fs $i $out/bin/$(basename $i)
···
35
35
bootstrap = startFPC;
36
36
};
37
37
38
38
-
meta = {
38
38
+
meta = with stdenv.lib; {
39
39
description = "Free Pascal Compiler from a source distribution";
40
40
-
maintainers = [stdenv.lib.maintainers.raskin];
41
41
-
platforms = stdenv.lib.platforms.linux;
40
40
+
homepage = https://www.freepascal.org;
41
41
+
maintainers = [ maintainers.raskin ];
42
42
+
license = with licenses; [ gpl2 lgpl2 ];
43
43
+
platforms = platforms.linux;
42
44
inherit version;
43
45
};
44
46
}