lagrange-tui: fix build

This commit is contained in:
Nikolay Korotkiy 2023-10-29 16:16:19 +04:00
parent ccb5cea4a8
commit d236200278
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, nix-update-script
, cmake
, pkg-config
@ -26,6 +27,14 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-x80le9/mkL57NQGgmqAdbixYGxcoKKO3Rl+BlpOzTwc=";
};
patches = [
# Remove on next release
(fetchpatch {
url = "https://github.com/skyjake/lagrange/commit/e8295f0065e8ecddab2e291e420098ac7981e0a9.patch";
hash = "sha256-s8Ryace6DOjw4C4h1Kb2ti5oygvsAAs/MF9pC3eQbAM=";
})
];
nativeBuildInputs = [ cmake pkg-config zip ];
buildInputs = [ the-foundation ]