mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 06:27:55 +00:00
kicli: init at 0.0.3
This commit is contained in:
parent
29639f61d8
commit
e9e9fd2803
28
pkgs/tools/misc/kicli/default.nix
Normal file
28
pkgs/tools/misc/kicli/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -1593,6 +1593,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user