nix-search-tv: 2.1.2 -> 2.1.5

This commit is contained in:
R. Ryantm
2025-04-04 04:00:03 +02:00
committed by Gaetan Lepage
parent e9e9e07548
commit e0bf0d93d9
+6 -6
View File
@@ -5,15 +5,15 @@
nix-update-script,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "nix-search-tv";
version = "2.1.2";
version = "2.1.5";
src = fetchFromGitHub {
owner = "3timeslazy";
repo = "nix-search-tv";
tag = "v${version}";
hash = "sha256-ZUc9aphl2+KRGwH7cn3dtcTcC3RxrR6qZC4RqwVddFw=";
tag = "v${finalAttrs.version}";
hash = "sha256-9tOrEcSZ6chVKq82zCoFCy3as71p5k7poXXFO/mXhw0=";
};
vendorHash = "sha256-hgZWppiy+P3BfoKOMClzCot1shKcGTZnsMCJ/ItxckE=";
@@ -32,9 +32,9 @@ buildGoModule rec {
meta = {
description = "Nixpkgs channel for television";
homepage = "https://github.com/3timeslazy/nix-search-tv";
changelog = "https://github.com/3timeslazy/nix-search-tv/releases/tag/v${version}";
changelog = "https://github.com/3timeslazy/nix-search-tv/releases/tag/v${finalAttrs.version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "nix-search-tv";
};
}
})