summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2020-12-29 00:51:31 +0000
committerGitHub <noreply@github.com>2020-12-29 00:51:31 +0000
commitc86ce50258e8bf39c3509f4092ca2771917e896e (patch)
tree10c87c261a7d02623bd323924f0873193a9c66c8 /pkgs/applications/audio
parentac032780356ff0bf6cc89877bcc0ddd96c8a09c2 (diff)
parent9154eda9510f0c0bd8dd2764becef2fa57a6128c (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/mopidy/tunein.nix7
-rw-r--r--pkgs/applications/audio/pavucontrol/default.nix13
-rw-r--r--pkgs/applications/audio/pt2-clone/default.nix4
3 files changed, 15 insertions, 9 deletions
diff --git a/pkgs/applications/audio/mopidy/tunein.nix b/pkgs/applications/audio/mopidy/tunein.nix
index 9ab032320528..90deea7c02ba 100644
--- a/pkgs/applications/audio/mopidy/tunein.nix
+++ b/pkgs/applications/audio/mopidy/tunein.nix
@@ -2,21 +2,18 @@
python3Packages.buildPythonApplication rec {
pname = "mopidy-tunein";
- version = "1.0.0";
+ version = "1.0.2";
src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-TuneIn";
- sha256 = "0insasf4w8ajsqjh5zmax7pkzmrk1p245vh4y8ddicldj45p6qfj";
+ sha256 = "1mvfhka8wi835yk9869yn3b6mdkfwqkylp14vpjkbm42d0kj4lkc";
};
propagatedBuildInputs = [
mopidy
];
- # tests fail with "ValueError: Namespace Gst not available" in mopidy itself
- doCheck = false;
-
pythonImportsCheck = [ "mopidy_tunein.tunein" ];
meta = with stdenv.lib; {
diff --git a/pkgs/applications/audio/pavucontrol/default.nix b/pkgs/applications/audio/pavucontrol/default.nix
index 301e44168d39..f0a0956f662b 100644
--- a/pkgs/applications/audio/pavucontrol/default.nix
+++ b/pkgs/applications/audio/pavucontrol/default.nix
@@ -1,5 +1,5 @@
-{ fetchurl, stdenv, pkgconfig, intltool, libpulseaudio, gtkmm3
-, libcanberra-gtk3, gnome3, wrapGAppsHook }:
+{ fetchurl, fetchpatch, stdenv, pkgconfig, intltool, libpulseaudio,
+gtkmm3 , libcanberra-gtk3, gnome3, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "pavucontrol";
@@ -10,6 +10,15 @@ stdenv.mkDerivation rec {
sha256 = "1qhlkl3g8d7h72xjskii3g1l7la2cavwp69909pzmbi2jyn5pi4g";
};
+ patches = [
+ # Can be removed with the next version bump
+ # https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/merge_requests/20
+ (fetchpatch {
+ name = "streamwidget-fix-drop-down-wayland.patch";
+ url = "https://gitlab.freedesktop.org/pulseaudio/pavucontrol/-/commit/ae278b8643cf1089f66df18713c8154208d9a505.patch";
+ sha256 = "066vhxjz6gmi2sp2n4pa1cdsxjnq6yml5js094g5n7ld34p84dpj";
+ })];
+
buildInputs = [ libpulseaudio gtkmm3 libcanberra-gtk3
gnome3.adwaita-icon-theme ];
diff --git a/pkgs/applications/audio/pt2-clone/default.nix b/pkgs/applications/audio/pt2-clone/default.nix
index bc89505a1fe2..6fb2fb9687f0 100644
--- a/pkgs/applications/audio/pt2-clone/default.nix
+++ b/pkgs/applications/audio/pt2-clone/default.nix
@@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "pt2-clone";
- version = "1.26_fix";
+ version = "1.27";
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "pt2-clone";
rev = "v${version}";
- sha256 = "1ikhgagniiq4irsy8i3g64m6cl61lnfvs163n8gs4hm426yckyb8";
+ sha256 = "1hg36pfzgdbhd5bkzi3cpn6v39q8xis2jk7w6qm615r587393pwd";
};
nativeBuildInputs = [ cmake ];