{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / development / interpreters / python-cosmopolitan / default.nix
bloba513c097fbcbe35a40aeeb1c1f559a4ca5af486e
1 { lib, stdenv, cosmopolitan, unzip, bintools-unwrapped }:
3 stdenv.mkDerivation rec {
4   pname = "python-cosmopolitan";
5   version = "3.6.14";
7   src = cosmopolitan.dist;
9   nativeBuildInputs = [ bintools-unwrapped unzip ];
11   # slashes are significant because upstream uses o/$(MODE)/foo.o
12   buildFlags = [ "o//third_party/python" ];
13   checkTarget = "o//third_party/python/test";
14   enableParallelBuilding = true;
16   doCheck = true;
17   dontConfigure = true;
18   dontFixup = true;
20   installPhase = ''
21     runHook preInstall
22     install o/third_party/python/*.com -Dt $out/bin
23     runHook postInstall
24   '';
26   meta = with lib; {
27     homepage = "https://justine.lol/cosmopolitan/";
28     description = "Actually Portable Python using Cosmopolitan";
29     platforms = platforms.x86_64;
30     badPlatforms = platforms.darwin;
31     license = licenses.isc;
32     maintainers = teams.cosmopolitan.members;
33     mainProgram = "python.com";
34   };