Merge pull request #79454 from Flakebi/spirv-cross
spirv-cross: init at 2020-01-16
This commit is contained in:
commit
379f7595d2
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/graphics/spirv-cross/default.nix
Normal file
23
pkgs/tools/graphics/spirv-cross/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "spirv-cross";
|
||||
version = "2020-04-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KhronosGroup";
|
||||
repo = "SPIRV-Cross";
|
||||
rev = version;
|
||||
sha256 = "0489s29kqgq20clxqg22y299yxz23p0yjh87yhka705hm9skx4sa";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake python3 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool designed for parsing and converting SPIR-V to other shader languages";
|
||||
homepage = "https://github.com/KhronosGroup/SPIRV-Cross";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ Flakebi ];
|
||||
};
|
||||
}
|
|
@ -14516,6 +14516,8 @@ in
|
|||
|
||||
spice-up = callPackage ../applications/office/spice-up { };
|
||||
|
||||
spirv-cross = callPackage ../tools/graphics/spirv-cross { };
|
||||
|
||||
sratom = callPackage ../development/libraries/audio/sratom { };
|
||||
|
||||
srm = callPackage ../tools/security/srm { };
|
||||
|
|
Loading…
Reference in a new issue