Merge pull request #263466 from marsam/update-squawk

squawk: 0.24.0 -> 0.24.1
This commit is contained in:
Mario Rodas 2023-10-26 05:13:13 -05:00 committed by GitHub
commit bb647287de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "squawk";
version = "0.24.0";
version = "0.24.1";
src = fetchFromGitHub {
owner = "sbdchd";
repo = pname;
rev = "v${version}";
hash = "sha256-eic5j/mD4PBCMcATTSTJSKazZFJOxQuW7NyiYPjKCcM=";
hash = "sha256-XQU/1uAas1bT7FSgBzJSPRe4ET9ysjpFGhV+qi23AAY=";
};
cargoHash = "sha256-kzb00W9IlshhiV+vUIOlO6BnprHr2XPf8P207WYFP5I=";
cargoHash = "sha256-Qg2VcsAqXpYamO35t/lvlXUPTdjAqZ4z3Nm0hYdhjEM=";
nativeBuildInputs = [
pkg-config
@ -44,6 +44,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://squawkhq.com/";
changelog = "https://github.com/sbdchd/squawk/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ andrewsmith ];
maintainers = with lib.maintainers; [ andrewsmith marsam ];
};
}