task-keeper: init at 0.27.0 (#352935)
This commit is contained in:
commit
3cb3833253
34
pkgs/by-name/ta/task-keeper/package.nix
Normal file
34
pkgs/by-name/ta/task-keeper/package.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
openssl,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "task-keeper";
|
||||
version = "0.27.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linux-china";
|
||||
repo = "task-keeper";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-lcwWl1ycMSmHgYT4m+CofwefqnjxjvuJkcv1Pe0OtEo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
cargoHash = "sha256-OVDwaMpA2gw0asdQ+yNRKmcmXLs+ddJI/lodewXujro=";
|
||||
|
||||
# tests depend on many packages (java, node, python, sbt, ...) - which I'm not currently willing to set up 😅
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/linux-china/task-keeper";
|
||||
description = "CLI to manage tasks from different task runners or package managers";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ tennox ];
|
||||
mainProgram = "tk";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user