gnome-podcasts: 0.7.2 -> 25.2 (#401618)

This commit is contained in:
Aleksana 2025-05-02 12:25:33 +08:00 committed by GitHub
commit 24ff16387c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,21 +23,21 @@
nix-update-script,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "gnome-podcasts";
version = "0.7.2";
version = "25.2";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "podcasts";
rev = version;
hash = "sha256-xPB1ieOgnHe2R5ORK0Hl61V+iDZ7WsJEnsAJGZvQUVI=";
tag = finalAttrs.version;
hash = "sha256-pVGut7kmwybPrR7ZaXPoDx03FOYeZSvchXl++2cdPck=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-Nzfsr1OFw7DnxrNol00BI9WIe1Tau3z/R4zdF0PaBOk=";
inherit (finalAttrs) pname version src;
hash = "sha256-HKU4rd5OzxhYcN6QKiTVj+NnkdyG8T+D6X1txznZ/xM=";
};
nativeBuildInputs = [
@ -78,6 +78,7 @@ stdenv.mkDerivation rec {
description = "Listen to your favorite podcasts";
mainProgram = "gnome-podcasts";
homepage = "https://apps.gnome.org/Podcasts/";
changelog = "https://gitlab.gnome.org/World/podcasts/-/releases/${finalAttrs.version}";
license = lib.licenses.gpl3Plus;
teams = [
lib.teams.gnome
@ -86,4 +87,4 @@ stdenv.mkDerivation rec {
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gnome-podcasts.x86_64-darwin
};
}
})