nixpkgs/pkgs/tools/graphics/spirv-cross/default.nix

25 lines
721 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
2020-02-07 13:23:57 +00:00
stdenv.mkDerivation rec {
pname = "spirv-cross";
2021-01-25 12:47:00 +00:00
version = "2021-01-15";
2020-02-07 13:23:57 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Cross";
rev = version;
2021-01-25 12:47:00 +00:00
sha256 = "/9/Owt7XcdOjujWZnaG1Q7FlywvsRo8/l8/CouS48Vk=";
2020-02-07 13:23:57 +00:00
};
nativeBuildInputs = [ cmake python3 ];
meta = with lib; {
2020-02-07 13:23:57 +00:00
description = "A tool designed for parsing and converting SPIR-V to other shader languages";
homepage = "https://github.com/KhronosGroup/SPIRV-Cross";
changelog = "https://github.com/KhronosGroup/SPIRV-Cross/releases/tag/${version}";
2021-03-18 15:24:08 +00:00
platforms = platforms.all;
2020-02-07 13:23:57 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];
};
}