bukut: init at 0.11

This commit is contained in:
Taha Gharib 2022-01-21 11:11:08 -05:00
parent 06d76e5e23
commit 7e1ed18419
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, python3, fetchFromGitHub }:
with python3.pkgs; buildPythonApplication rec {
pname = "bukut";
version = "0.11";
src = fetchFromGitHub {
owner = "peterjschroeder";
repo = "bukut";
rev = "v${version}";
sha256 = "sha256-MCAyMvzXnC7QSpWeG7qorK4JmRBMzG3eGsp5YpKmVjg=";
};
propagatedBuildInputs = [
asciimatics
beautifulsoup4
natsort
pyperclip
pyxdg
];
meta = with lib; {
description = "Text user interface for buku bookmark manager";
homepage = "https://github.com/peterjschroeder/bukut";
license = licenses.gpl3Only;
maintainers = with maintainers; [ taha ];
};
}

View file

@ -3938,6 +3938,8 @@ with pkgs;
buku = callPackage ../applications/misc/buku { };
bukut = callPackage ../applications/misc/bukut { };
byzanz = callPackage ../applications/video/byzanz {};
ori = callPackage ../tools/backup/ori { };