tinycc: unstable-2021-10-09 -> 0.9.27+date=2022-01-11

This commit is contained in:
AndersonTorres 2022-01-14 00:13:52 -03:00
parent b316efff4b
commit d852768538

View file

@ -1,18 +1,26 @@
{ stdenv, lib, fetchFromRepoOrCz, perl, texinfo, which }: { lib
, stdenv
, fetchFromRepoOrCz
, perl
, texinfo
, which
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tcc"; pname = "tcc";
version = "unstable-2021-10-09"; version = "0.9.27+date=2022-01-11";
src = fetchFromRepoOrCz { src = fetchFromRepoOrCz {
repo = "tinycc"; repo = "tinycc";
rev = "ca11849ebb88ef4ff87beda46bf5687e22949bd6"; rev = "4e0e9b8f210d69893b306d6b24d2dd615a22f246";
sha256 = "sha256-xnUDyTYZxbxUCblACyX73boBhU073VRqSy1SWlWsvIw="; hash = "sha256-0BJ5wXsgDLBIvcbq+rL9UQC4NjLHCI9r6sUWF98APPg=";
}; };
nativeBuildInputs = [ perl texinfo which ]; nativeBuildInputs = [
perl
hardeningDisable = [ "fortify" ]; texinfo
which
];
postPatch = '' postPatch = ''
patchShebangs texi2pod.pl patchShebangs texi2pod.pl
@ -46,37 +54,39 @@ stdenv.mkDerivation rec {
install -Dt $out/lib/pkgconfig libtcc.pc -m 444 install -Dt $out/lib/pkgconfig libtcc.pc -m 444
''; '';
outputs = [ "out" "info" "man" ];
doCheck = true; doCheck = true;
checkTarget = "test"; checkTarget = "test";
meta = with lib; { meta = with lib; {
homepage = "https://repo.or.cz/tinycc.git";
description = "Small, fast, and embeddable C compiler and interpreter"; description = "Small, fast, and embeddable C compiler and interpreter";
longDescription = '' longDescription = ''
TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C
other C compilers, it is meant to be self-sufficient: you do not compilers, it is meant to be self-sufficient: you do not need an external
need an external assembler or linker because TCC does that for assembler or linker because TCC does that for you.
you.
TCC compiles so fast that even for big projects Makefiles may not TCC compiles so fast that even for big projects Makefiles may not be
be necessary. necessary.
TCC not only supports ANSI C, but also most of the new ISO C99 TCC not only supports ANSI C, but also most of the new ISO C99 standard
standard and many GNU C extensions. and many GNU C extensions.
TCC can also be used to make C scripts, i.e. pieces of C source TCC can also be used to make C scripts, i.e. pieces of C source that you
that you run as a Perl or Python script. Compilation is so fast run as a Perl or Python script. Compilation is so fast that your script
that your script will be as fast as if it was an executable. will be as fast as if it was an executable.
TCC can also automatically generate memory and bound checks while TCC can also automatically generate memory and bound checks while allowing
allowing all C pointers operations. TCC can do these checks even all C pointers operations. TCC can do these checks even if non patched
if non patched libraries are used. libraries are used.
With libtcc, you can use TCC as a backend for dynamic code With libtcc, you can use TCC as a backend for dynamic code generation.
generation.
''; '';
homepage = "https://repo.or.cz/tinycc.git";
license = licenses.lgpl21Only; license = licenses.lgpl21Only;
platforms = platforms.linux; maintainers = with maintainers; [ joachifm AndersonTorres ];
maintainers = [ maintainers.joachifm ]; platforms = platforms.unix;
}; };
} }
# TODO: more multiple outputs
# TODO: self-compilation