48ea4171cb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/urlscan/versions
25 lines
644 B
Nix
25 lines
644 B
Nix
{ stdenv, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "urlscan";
|
|
version = "0.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firecat53";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "11wkwjqsq848ks6m2jqsb8h0xnz75fb60bm0c4jkxys9wzy4chg5";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python3Packages.urwid ];
|
|
|
|
doCheck = false; # No tests available
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mutt and terminal url selector (similar to urlview)";
|
|
homepage = https://github.com/firecat53/urlscan;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ dpaetzel jfrankenau ];
|
|
};
|
|
}
|