nixos-config/pkgs/taskwarrior-hooks/default.nix

27 lines
797 B
Nix
Raw Normal View History

2019-12-29 02:55:15 +01:00
{ rustPlatform, fetchFromGitHub, stdenv, ... }:
rustPlatform.buildRustPackage rec {
name = "taskwarrior-hooks-${version}";
2020-01-25 05:11:49 +01:00
version = "0.2.2";
2019-12-29 02:55:15 +01:00
src = fetchFromGitHub {
owner = "mrVanDalo";
repo = "taskwarrior-hooks";
rev = "${version}";
2020-01-25 05:11:49 +01:00
sha256 = "1mj0k6ykac332667315kqrvg37j8r8078g48nafv7ini6lw8djas";
2019-12-29 02:55:15 +01:00
};
2020-11-21 18:56:11 +01:00
cargoSha256 = "0l4sa5c1pfjdlbdxrd61wd2qij4zaf8rx1xqac80jicly9rf3859";
#cargoSha256 = "1ijnh2ank9slmfglw4yhnycl11x26m94m2hiq3hcasmbs6c39zj5";
2020-05-16 02:25:06 +02:00
#verifyCargoDeps = true;
2019-12-29 02:55:15 +01:00
meta = with stdenv.lib; {
description =
"A fast line-oriented regex search tool, similar to ag and ack";
homepage = "https://github.com/mrvandalo/taskwarrior-hooks";
2020-05-16 02:25:06 +02:00
license = licenses.gpl3;
2019-12-29 02:55:15 +01:00
maintainers = [ maintainers.mrVanDalo ];
platforms = platforms.all;
};
}