bukut: init at 0.11
This commit is contained in:
parent
06d76e5e23
commit
7e1ed18419
28
pkgs/applications/misc/bukut/default.nix
Normal file
28
pkgs/applications/misc/bukut/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user