Merge pull request #177670 from jonnybolton/sokol

sokol: init at unstable-2022-06-13
main
Anderson Torres 2 years ago committed by GitHub
commit e1c8b9a431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 35
      pkgs/development/libraries/sokol/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -6303,6 +6303,12 @@
githubId = 1843676;
name = "Jonathan Reeve";
};
jonnybolton = {
email = "jonnybolton@gmail.com";
github = "jonnybolton";
githubId = 8580434;
name = "Jonny Bolton";
};
jonringer = {
email = "jonringer117@gmail.com";
matrix = "@jonringer:matrix.org";

@ -0,0 +1,35 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "sokol";
version = "unstable-2022-06-13";
src = fetchFromGitHub {
owner = "floooh";
repo = "sokol";
rev = "3c7016105f3b7463f0cfc74df8a55642e5448c11";
sha256 = "sha256-dKHb6GTp5aJPuWWXI4ZYnhgdXs23gGWyPymGPGwxcLY=";
};
dontBuild = true;
dontConfigure = true;
installPhase = ''
runHook preInstall
mkdir -p $out/include/sokol
cp *.h $out/include/sokol/
cp -R util $out/include/sokol/util
runHook postInstall
'';
meta = with lib; {
description = "Minimal cross-platform standalone C headers";
homepage = "https://github.com/floooh/sokol";
license = licenses.zlib;
platforms = platforms.all;
maintainers = with maintainers; [ jonnybolton ];
};
}

@ -20757,6 +20757,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Carbon;
};
sokol = callPackage ../development/libraries/sokol { };
sonic = callPackage ../development/libraries/sonic { };
sope = callPackage ../development/libraries/sope { };

Loading…
Cancel
Save