Skip to content

Commit

Permalink
fix: update nix glfw version
Browse files Browse the repository at this point in the history
  • Loading branch information
Anut-py committed Mar 9, 2024
1 parent aad8b04 commit 85a3e98
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
nativeBuildInputs = [];
postFixup = "mkdir -p $out/include/ && cp ./src/raygui.h $out/include/ && cp ./examples/styles/*.h $out/include/";
};
# temporary fix for CI/CD
# TODO: remove when github.com/NixOS/nixpkgs/pull/293296 gets merged
glfw = super.glfw.overrideAttrs (old: {
src = self.fetchFromGitHub {
owner = "glfw";
repo = "GLFW";
rev = "3.4.0";
sha256 = "sha256-FcnQPDeNHgov1Z07gjFze0VMz2diOrpbKZCsI96ngz0=";
};
});
})
];
};
Expand Down

0 comments on commit 85a3e98

Please sign in to comment.