summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-11-05 07:41:19 -0600
committerGitHub <noreply@github.com>2019-11-05 07:41:19 -0600
commit3c8f637c02199bfc8588bcedc3e9b10235f79993 (patch)
tree04466a5b91c7332b0aa60c3371dbdb58056ca7a2 /pkgs
parent8853b8cdcb26371ee015415ea439a0bbad7998d1 (diff)
parent86eedaf1ca351c44a520fc0014161b596576451c (diff)
downloadnixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar.gz
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar.bz2
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar.lz
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar.xz
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.tar.zst
nixpkgs-3c8f637c02199bfc8588bcedc3e9b10235f79993.zip
Merge pull request #72145 from dtzWill/update/radiotray-ng-0.2.7
radiotray-ng: 0.2.6 -> 0.2.7, py3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/radiotray-ng/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/radiotray-ng/default.nix b/pkgs/applications/audio/radiotray-ng/default.nix
index c0186a146be..a64e407b39b 100644
--- a/pkgs/applications/audio/radiotray-ng/default.nix
+++ b/pkgs/applications/audio/radiotray-ng/default.nix
@@ -21,7 +21,7 @@
 # User-agent info
 , lsb-release
 # rt2rtng
-, python2
+, python3
 # Testing
 , gtest
 # Fixup
@@ -36,17 +36,17 @@ let
     gst-libav
   ];
   # For the rt2rtng utility for converting bookmark file to -ng format
-  pythonInputs = with python2.pkgs; [ python2 lxml ];
+  pythonInputs = with python3.pkgs; [ python lxml ];
 in
 stdenv.mkDerivation rec {
   pname = "radiotray-ng";
-  version = "0.2.6";
+  version = "0.2.7";
 
   src = fetchFromGitHub {
     owner = "ebruck";
-    repo = "radiotray-ng";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "0khrfxjas2ldh0kksq7l811srqy16ahjxchvz0hhykx5hykymxlb";
+    sha256 = "1v2nsz7s0jj0wmqabzk6akcf1353rachm1lfq77hxbq9z5pw8pgb";
   };
 
   nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook makeWrapper ];