Merge pull request #229510 from poelzi/kicli

This commit is contained in:
Janik 2023-06-27 00:48:16 +02:00 committed by GitHub
commit e12a46b357
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
, buildGoModule
, fetchFromGitHub
, nix-update-script
}:
buildGoModule rec {
pname = "kicli";
version = "0.0.3";
src = fetchFromGitHub {
owner = "anned20";
repo = pname;
rev = "v${version}";
hash = "sha256-Mt1lHOC8gBcLQ6kArUvlPrH+Y/63mIQTCsUY2UTJE2c=";
};
vendorHash = "sha256-+8L/9NJ3dzP4k+LXkPD208uFGeARv7aT39bhH+R08e0=";
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/anned20/kicli";
description = "CLI interface to the Kimai time tracking project";
license = licenses.mit;
maintainers = with maintainers; [ poelzi ];
platforms = platforms.all;
};
}

View file

@ -1681,6 +1681,8 @@ with pkgs;
kaufkauflist = callPackage ../applications/misc/kaufkauflist { };
kicli = callPackage ../tools/misc/kicli { };
ksmbd-tools = callPackage ../os-specific/linux/ksmbd-tools { };
ksnip = libsForQt5.callPackage ../tools/misc/ksnip { };