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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
725 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
2020-02-07 14:23:57 +01:00
stdenv.mkDerivation rec {
pname = "spirv-cross";
version = "MoltenVK-1.1.5";
2020-02-07 14:23:57 +01:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Cross";
rev = version;
sha256 = "/t6hAlGY3+bddWg5ERFbqeU4/MAjq+/AEVv1Jy2C0HA=";
2020-02-07 14:23:57 +01:00
};
nativeBuildInputs = [ cmake python3 ];
meta = with lib; {
2020-02-07 14:23:57 +01: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 16:24:08 +01:00
platforms = platforms.all;
2020-02-07 14:23:57 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];
};
}