gnome-podcasts: init at 0.4.6
This commit is contained in:
parent
e6fb865500
commit
3782e127bc
44
pkgs/applications/audio/gnome-podcasts/default.nix
Normal file
44
pkgs/applications/audio/gnome-podcasts/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ stdenv, fetchurl, fetchFromGitLab, meson, ninja, gettext, cargo, rustc, python3, rustPlatform, pkgconfig, gnome3
|
||||||
|
, glib, libhandy, gtk3, dbus, openssl, sqlite, gst_all_1, wrapGAppsHook }:
|
||||||
|
|
||||||
|
# TODO: build from git for easier updates
|
||||||
|
# rustPlatform.buildRustPackage rec {
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.4.6";
|
||||||
|
name = "gnome-podcasts-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = https://gitlab.gnome.org/World/podcasts/uploads/e59ac5d618d7daf4c7f33ba72957c466/gnome-podcasts-0.4.6.tar.xz;
|
||||||
|
sha256 = "0g2rk3w251fp5jwbxs5ya1adv8nsgdqjy1vmfg8qqab6qyndhbrc";
|
||||||
|
};
|
||||||
|
|
||||||
|
# src = fetchFromGitLab {
|
||||||
|
# domain = "gitlab.gnome.org";
|
||||||
|
# owner = "World";
|
||||||
|
# repo = "podcasts";
|
||||||
|
# rev = version;
|
||||||
|
# sha256 = "15xj98dhxvys0cnya9488qsfsm0ys1wy69wkc39z8j6hwdm7byq2";
|
||||||
|
# };
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson ninja pkgconfig gettext cargo rustc python3 wrapGAppsHook
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
glib gtk3 libhandy dbus openssl sqlite gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-bad
|
||||||
|
];
|
||||||
|
|
||||||
|
# cargoSha256 = "0721b5f700vvvzvmdl8nfjaa6j412q1fjssgrjv8n6rmn9z13d2v";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x scripts/compile-gschema.py # patchShebangs requires executable file
|
||||||
|
patchShebangs scripts/compile-gschema.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Listen to your favorite podcasts";
|
||||||
|
homepage = https://wiki.gnome.org/Apps/Podcasts;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = gnome3.maintainers;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -2934,6 +2934,8 @@ with pkgs;
|
|||||||
|
|
||||||
gnome-builder = callPackage ../applications/editors/gnome-builder { };
|
gnome-builder = callPackage ../applications/editors/gnome-builder { };
|
||||||
|
|
||||||
|
gnome-podcasts = callPackage ../applications/audio/gnome-podcasts { };
|
||||||
|
|
||||||
gnokii = callPackage ../tools/misc/gnokii { };
|
gnokii = callPackage ../tools/misc/gnokii { };
|
||||||
|
|
||||||
gnuapl = callPackage ../development/interpreters/gnu-apl { };
|
gnuapl = callPackage ../development/interpreters/gnu-apl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user