mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Add package: rtv
This commit is contained in:
parent
8e86ec5bf0
commit
6acc1fe34d
27
pkgs/applications/misc/rtv/default.nix
Normal file
27
pkgs/applications/misc/rtv/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, pkgs, python, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
version = "1.2.2";
|
||||
name = "rtv-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/michael-lazar/rtv/archive/v${version}.tar.gz";
|
||||
sha256 = "0pisairv28lhqvq8zs0whz3ww8fraj98941kk5idyxadbq0icmk3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
requests
|
||||
six
|
||||
praw
|
||||
python.modules.curses
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/michael-lazar/rtv;
|
||||
description = "Browse Reddit from your Terminal";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -11802,6 +11802,8 @@ let
|
||||
|
||||
rtl-sdr = callPackage ../applications/misc/rtl-sdr { };
|
||||
|
||||
rtv = callPackage ../applications/misc/rtv { };
|
||||
|
||||
rubyripper = callPackage ../applications/audio/rubyripper {};
|
||||
|
||||
rxvt = callPackage ../applications/misc/rxvt { };
|
||||
|
Loading…
Reference in New Issue
Block a user