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
makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc";
23
24
installFlags = "INSTALL_PREFIX=\${out}";
25
-
26
postInstall = ''
27
for i in $out/lib/fpc/*/ppc*; do
28
ln -fs $i $out/bin/$(basename $i)
···
35
bootstrap = startFPC;
36
};
37
38
-
meta = {
39
description = "Free Pascal Compiler from a source distribution";
40
-
maintainers = [stdenv.lib.maintainers.raskin];
41
-
platforms = stdenv.lib.platforms.linux;
0
0
42
inherit version;
43
};
44
}
···
22
makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc";
23
24
installFlags = "INSTALL_PREFIX=\${out}";
25
+
26
postInstall = ''
27
for i in $out/lib/fpc/*/ppc*; do
28
ln -fs $i $out/bin/$(basename $i)
···
35
bootstrap = startFPC;
36
};
37
38
+
meta = with stdenv.lib; {
39
description = "Free Pascal Compiler from a source distribution";
40
+
homepage = https://www.freepascal.org;
41
+
maintainers = [ maintainers.raskin ];
42
+
license = with licenses; [ gpl2 lgpl2 ];
43
+
platforms = platforms.linux;
44
inherit version;
45
};
46
}