Merge pull request #304557 from vifino/tio-2.8

tio: 2.7 -> 2.8
This commit is contained in:
Weijia Wang 2024-04-17 00:34:05 +02:00 committed by GitHub
commit 7f14befc43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -1,19 +1,19 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion, darwin }:
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, lua, bash-completion, darwin }:
stdenv.mkDerivation rec {
pname = "tio";
version = "2.7";
version = "2.8";
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
hash = "sha256-SGOxy0gyR2RQn5sj28RPhDNmESd7LhNj9nlOoCZSEJs=";
hash = "sha256-BBfLmRhbDeymXXlYp71XTwbAab7h7gJ842fzZJNb6kU=";
};
strictDeps = true;
buildInputs = [ inih ]
buildInputs = [ inih lua ]
++ lib.optionals (stdenv.hostPlatform.isDarwin) [ darwin.apple_sdk.frameworks.IOKit ];
nativeBuildInputs = [ meson ninja pkg-config bash-completion ];