nixpkgs/pkgs/applications/misc/urlscan/default.nix

25 lines
644 B
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchFromGitHub }:
2016-10-23 14:25:08 +00:00
python3Packages.buildPythonApplication rec {
2018-03-11 09:40:56 +00:00
pname = "urlscan";
version = "0.9.2";
2016-10-23 14:25:08 +00:00
src = fetchFromGitHub {
owner = "firecat53";
2018-03-11 09:40:56 +00:00
repo = pname;
2016-10-23 14:25:08 +00:00
rev = version;
sha256 = "16cc1vvvhylrl9208d253k11rqzi95mg7hrf7xbd0bqxvd6rmxar";
2016-10-23 14:25:08 +00:00
};
propagatedBuildInputs = [ python3Packages.urwid ];
2016-10-23 14:25:08 +00:00
2018-03-11 09:40:56 +00:00
doCheck = false; # No tests available
2016-10-23 14:25:08 +00:00
meta = with stdenv.lib; {
description = "Mutt and terminal url selector (similar to urlview)";
2018-03-11 09:40:56 +00:00
homepage = https://github.com/firecat53/urlscan;
2016-10-23 14:25:08 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ dpaetzel jfrankenau ];
2016-10-23 14:25:08 +00:00
};
}