Merge pull request #155783 from tgharib/bukut

bukut: init at 0.11
This commit is contained in:
legendofmiracles 2022-01-21 13:11:50 -06:00 committed by GitHub
commit 96860d22fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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