Unverified Commit c0b20967 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

nix-search-tv: 2.1.2 -> 2.1.5 (#395903)

parents a462b946 e0bf0d93
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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";
  };
}
})