nixpkgs/pkgs/applications/misc/taskwarrior/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, libuuid, gnutls, python3, xdg-utils, installShellFiles }:
stdenv.mkDerivation rec {
pname = "taskwarrior";
2022-03-16 07:48:50 +00:00
version = "2.6.2";
2021-10-03 10:23:38 +00:00
src = fetchFromGitHub {
owner = "GothenburgBitFactory";
repo = "taskwarrior";
rev = "v${version}";
2022-03-16 07:48:50 +00:00
sha256 = "sha256-0YveqiylXJi4cdDCfnPtwCVOJbQrZYsxnXES+9B4Yfw=";
2021-10-03 10:23:38 +00:00
fetchSubmodules = true;
};
2021-03-03 19:22:20 +00:00
2021-10-03 10:23:38 +00:00
postPatch = ''
substituteInPlace src/commands/CmdNews.cpp \
--replace "xdg-open" "${lib.getBin xdg-utils}/bin/xdg-open"
2021-03-03 19:22:20 +00:00
'';
2012-06-22 12:51:41 +00:00
nativeBuildInputs = [ cmake libuuid gnutls python3 installShellFiles ];
2012-06-22 12:51:41 +00:00
2021-03-03 19:22:20 +00:00
doCheck = true;
preCheck = ''
2021-10-03 10:23:38 +00:00
patchShebangs --build test
2021-03-03 19:22:20 +00:00
'';
checkTarget = "test";
postInstall = ''
# ZSH is installed automatically from some reason, only bash and fish need
# manual installation
installShellCompletion --cmd task \
--bash $out/share/doc/task/scripts/bash/task.sh \
--fish $out/share/doc/task/scripts/fish/task.fish
rm -r $out/share/doc/task/scripts/bash
rm -r $out/share/doc/task/scripts/fish
2023-03-05 16:35:48 +00:00
# Install vim and neovim plugin
mkdir -p $out/share/vim-plugins
2023-03-05 16:35:48 +00:00
mv $out/share/doc/task/scripts/vim $out/share/vim-plugins/task
mkdir -p $out/share/nvim
ln -s $out/share/vim-plugins/task $out/share/nvim/site
'';
meta = with lib; {
description = "Highly flexible command-line tool to manage TODO lists";
homepage = "https://taskwarrior.org";
2015-06-22 06:25:07 +00:00
license = licenses.mit;
2021-10-03 10:23:38 +00:00
maintainers = with maintainers; [ marcweber oxalica ];
mainProgram = "task";
2021-03-03 19:22:20 +00:00
platforms = platforms.unix;
};
}