toxic: 0.11.3 -> 0.15.1

This commit is contained in:
Emery Hemingway 2024-03-31 09:36:36 +01:00
parent 8736da4cc6
commit 636d8e09e5

View File

@ -4,13 +4,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "toxic"; pname = "toxic";
version = "0.11.3"; version = "0.15.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Tox"; owner = "TokTok";
repo = "toxic"; repo = "toxic";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-BabRY9iu5ccEXo5POrWkWaIWAeQU4MVlMK8I+Iju6aQ="; sha256 = "sha256-+nOjlQED2pbYwGV6IGeKK1pymBSrDVWCWKjZ42vib7E=";
}; };
makeFlags = [ "PREFIX=$(out)"]; makeFlags = [ "PREFIX=$(out)"];
@ -23,11 +23,12 @@ stdenv.mkDerivation rec {
]; ];
nativeBuildInputs = [ pkg-config libconfig ]; nativeBuildInputs = [ pkg-config libconfig ];
meta = with lib; src.meta // { meta = src.meta // {
description = "Reference CLI for Tox"; description = "Reference CLI for Tox";
mainProgram = "toxic"; mainProgram = "toxic";
license = licenses.gpl3Plus; homepage = "https://github.com/TokTok/toxic";
maintainers = with maintainers; [ ehmry ]; license = lib.licenses.gpl3Plus;
platforms = platforms.linux; maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux;
}; };
} }