glsl_analyzer: 1.4.5 -> 1.5.1

This commit is contained in:
wr7
2024-07-31 15:10:24 -05:00
parent c68bae3162
commit 8fb6d3d92d
+5 -8
View File
@@ -1,25 +1,22 @@
{ lib
, pkgs
, stdenv
, fetchFromGitHub
, zig_0_12
, darwin
, zig_0_13
}:
let stdenv = if pkgs.stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else pkgs.stdenv; in
stdenv.mkDerivation (finalAttrs: {
pname = "glsl_analyzer";
version = "1.4.5";
version = "1.5.1";
src = fetchFromGitHub {
owner = "nolanderc";
repo = "glsl_analyzer";
rev = "v${finalAttrs.version}";
hash = "sha256-+eYBw/F1RzI5waAkLgbV0J/Td91hbNcAtHcisQaL82k=";
hash = "sha256-AIzk05T8JZn8HWSI6JDFUIYl4sutd3HR3Zb+xmJll0g=";
};
nativeBuildInputs = [
zig_0_12.hook
zig_0_13.hook
];
postPatch = ''