blob: 45fbb404ec6b7fc0e6b1bc58d5d7e3cbb5dbb12b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
rustPlatform,
fetchFromGitHub,
openssl,
pkg-config,
}:
rustPlatform.buildRustPackage rec {
pname = "task-keeper";
version = "0.29.3";
src = fetchFromGitHub {
owner = "linux-china";
repo = "task-keeper";
tag = "v${version}";
hash = "sha256-89KR1u4aTd32tGPiW4qUUk9eC7d9pGSBuZ8C8QVgMQ4=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoHash = "sha256-eLdGLKem/Sh9cQ7TRbKymUIldpctBKk1JBjWiSwLloo=";
# 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";
};
}
|