sokol: init at unstable-2022-06-13
This commit is contained in:
parent
beb073b41f
commit
d6b6545c9b
2 changed files with 37 additions and 0 deletions
35
pkgs/development/libraries/sokol/default.nix
Normal file
35
pkgs/development/libraries/sokol/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -20741,6 +20741,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…
Reference in a new issue