lol

Merge pull request #304557 from vifino/tio-2.8

tio: 2.7 -> 2.8

authored by

Weijia Wang and committed by
GitHub
7f14befc 300e0610

+4 -4
+4 -4
pkgs/tools/misc/tio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion, darwin }: 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, lua, bash-completion, darwin }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tio"; 5 - version = "2.7"; 5 + version = "2.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tio"; 9 9 repo = "tio"; 10 10 rev = "v${version}"; 11 - hash = "sha256-SGOxy0gyR2RQn5sj28RPhDNmESd7LhNj9nlOoCZSEJs="; 11 + hash = "sha256-BBfLmRhbDeymXXlYp71XTwbAab7h7gJ842fzZJNb6kU="; 12 12 }; 13 13 14 14 strictDeps = true; 15 15 16 - buildInputs = [ inih ] 16 + buildInputs = [ inih lua ] 17 17 ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ darwin.apple_sdk.frameworks.IOKit ]; 18 18 19 19 nativeBuildInputs = [ meson ninja pkg-config bash-completion ];