lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sokol: init at unstable-2022-06-13

+37
+35
pkgs/development/libraries/sokol/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "sokol"; 5 + version = "unstable-2022-06-13"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "floooh"; 9 + repo = "sokol"; 10 + rev = "3c7016105f3b7463f0cfc74df8a55642e5448c11"; 11 + sha256 = "sha256-dKHb6GTp5aJPuWWXI4ZYnhgdXs23gGWyPymGPGwxcLY="; 12 + }; 13 + 14 + dontBuild = true; 15 + dontConfigure = true; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + mkdir -p $out/include/sokol 21 + cp *.h $out/include/sokol/ 22 + cp -R util $out/include/sokol/util 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = with lib; { 28 + description = "Minimal cross-platform standalone C headers"; 29 + homepage = "https://github.com/floooh/sokol"; 30 + license = licenses.zlib; 31 + platforms = platforms.all; 32 + maintainers = with maintainers; [ jonnybolton ]; 33 + }; 34 + } 35 +
+2
pkgs/top-level/all-packages.nix
··· 20741 20741 inherit (darwin.apple_sdk.frameworks) Carbon; 20742 20742 }; 20743 20743 20744 + sokol = callPackage ../development/libraries/sokol { }; 20745 + 20744 20746 sonic = callPackage ../development/libraries/sonic { }; 20745 20747 20746 20748 sope = callPackage ../development/libraries/sope { };