about summary refs log tree commit diff
path: root/pkgs/applications/misc/rtv/default.nix
diff options
context:
space:
mode:
authorwedens <kirill.wedens@gmail.com>2016-04-06 22:12:16 +0600
committerwedens <kirill.wedens@gmail.com>2016-04-06 22:12:16 +0600
commit80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6 (patch)
treee175ce7327d5f1721159bdbefad8ca81426b1be1 /pkgs/applications/misc/rtv/default.nix
parent33530b5bd125de65a4ef9d5963886c1a0b87f356 (diff)
downloadnixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar.gz
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar.bz2
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar.lz
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar.xz
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.tar.zst
nixlib-80db147f0ceabb6fbcd2d5a6bd9faec3d4555eb6.zip
rtv: 1.8.0 -> 1.9.0
Diffstat (limited to 'pkgs/applications/misc/rtv/default.nix')
-rw-r--r--pkgs/applications/misc/rtv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix
index 68097c2e2544..194535c7314c 100644
--- a/pkgs/applications/misc/rtv/default.nix
+++ b/pkgs/applications/misc/rtv/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "1.8.0";
+  version = "1.9.0";
   name = "rtv-${version}";
 
   src = fetchFromGitHub {
     owner = "michael-lazar";
     repo = "rtv";
     rev = "v${version}";
-    sha256 = "0vp9yapm6bm4zdhd1ibbirc23ck7smrbsrask7xkrnz7qysxgsd3";
+    sha256 = "18r3i2zlcprj6d4nzhhbd6sm1fs2x28924xsm6lcxa1643gkyb7i";
   };
 
   propagatedBuildInputs = with pythonPackages; [
@@ -24,6 +24,6 @@ pythonPackages.buildPythonApplication rec {
     homepage = https://github.com/michael-lazar/rtv;
     description = "Browse Reddit from your Terminal";
     license = licenses.mit;
-    maintainers = with maintainers; [ matthiasbeyer jgeerds ];
+    maintainers = with maintainers; [ matthiasbeyer jgeerds wedens ];
   };
 }