aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ts/tskm/package.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/ts/tskm/package.nix56
1 files changed, 56 insertions, 0 deletions
diff --git a/pkgs/by-name/ts/tskm/package.nix b/pkgs/by-name/ts/tskm/package.nix
new file mode 100644
index 00000000..ad10865f
--- /dev/null
+++ b/pkgs/by-name/ts/tskm/package.nix
@@ -0,0 +1,56 @@
+# nixos-config - My current NixOS configuration
+#
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# SPDX-License-Identifier: GPL-3.0-or-later
+#
+# This file is part of my nixos-config.
+#
+# You should have received a copy of the License along with this program.
+# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ rustPlatform,
+ installShellFiles,
+ makeWrapper,
+ lib,
+ # Dependencies
+ taskwarrior3,
+ git,
+ rofi,
+ sqlite,
+}:
+rustPlatform.buildRustPackage (finalAttrs: {
+ pname = "tskm";
+ version = "0.1.0";
+
+ src = ./.;
+ cargoLock = {
+ lockFile = ./Cargo.lock;
+ };
+
+ buildInputs = [
+ taskwarrior3
+ git
+ rofi
+ sqlite
+ ];
+
+ nativeBuildInputs = [
+ installShellFiles
+ makeWrapper
+ ];
+
+ postInstall = ''
+ installShellCompletion --cmd tskm \
+ --bash <(COMPLETE=bash $out/bin/tskm) \
+ --fish <(COMPLETE=fish $out/bin/tskm) \
+ --zsh <(COMPLETE=zsh $out/bin/tskm)
+
+ # NOTE: We cannot clear the path, because we need access to the $EDITOR. <2025-04-04>
+ wrapProgram $out/bin/tskm \
+ --prefix PATH : ${lib.makeBinPath finalAttrs.buildInputs}
+ '';
+
+ meta = {
+ mainProgram = "tskm";
+ };
+})