cosmocc: init at 2.2

This commit is contained in:
Louis Bettens 2022-10-10 11:28:29 +02:00 committed by tomberek
parent afbdf8c54d
commit e9be28ebac
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ runCommand, lib, cosmopolitan }:
let
cosmocc =
runCommand "cosmocc"
{
pname = "cosmocc";
inherit (cosmopolitan) version;
meta = with lib; {
homepage = "https://justine.lol/cosmopolitan/";
description = "compilers for Cosmopolitan C/C++ programs";
license = licenses.mit;
maintainers = teams.cosmopolitan.members;
};
passthru.tests = {
cc = runCommand "c-test" { } ''
cat > hello.c << END
#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}
END
${cosmocc}/bin/cosmocc hello.c
./a.out > $out
'';
};
} ''
mkdir -p $out/bin
install ${cosmopolitan.dist}/tool/scripts/{cosmocc,cosmoc++} $out/bin
sed 's|/opt/cosmo\([ /]\)|${cosmopolitan.dist}\1|g' -i $out/bin/*
'';
in
cosmocc

View file

@ -19293,6 +19293,8 @@ with pkgs;
cog = callPackage ../development/web/cog { };
cosmocc = callPackage ../development/tools/cosmocc { };
cosmopolitan = callPackage ../development/libraries/cosmopolitan { };
python-cosmopolitan = callPackage ../development/interpreters/python-cosmopolitan { };