about summary refs log tree commit diff
path: root/pkgs/by-name/ia
diff options
context:
space:
mode:
authorMax Ambaum <max_a@e.email>2024-01-27 16:03:16 +0000
committerMax Ambaum <max_a@e.email>2024-01-27 16:03:16 +0000
commitb87f47a25c1cb3ed75da88837a6267ce4e2ba4d0 (patch)
tree5b46896c0baea25eb6efee87919aac96e40ddbb3 /pkgs/by-name/ia
parentfd61dfe9c1abf5dddcabf3fc43e0a46afbac64ec (diff)
ianny: init at v1.0.0beta.1
Diffstat (limited to 'pkgs/by-name/ia')
-rw-r--r--pkgs/by-name/ia/ianny/package.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/by-name/ia/ianny/package.nix b/pkgs/by-name/ia/ianny/package.nix
new file mode 100644
index 0000000000000..6b7c3ca940e54
--- /dev/null
+++ b/pkgs/by-name/ia/ianny/package.nix
@@ -0,0 +1,43 @@
+{ lib
+, fetchFromGitHub
+, rustPlatform
+, dbus
+, pkg-config
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "ianny";
+  version = "1.0.0beta.1";
+
+  src = fetchFromGitHub {
+    owner = "zefr0x";
+    repo = "ianny";
+    rev = "v${version}";
+    hash = "sha256-Bnr+wtusvTM690IISBs0wKj0ChBoIrMHyVZ8wdGgK08=";
+  };
+
+  cargoHash = "sha256-/8C+hDq/z+h1uxO9prLbKHgyfMGrMODAs5/yUrutaAM=";
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ dbus.dev ];
+
+  postPatch = ''
+    substituteInPlace src/main.rs \
+      --replace-fail '/usr/share/locale' $out/share/locale
+  '';
+
+  preFixup = ''
+    mkdir -p $out/etc/xdg/autostart
+    mkdir -p $out/usr/share/local
+    cp io.github.zefr0x.ianny.desktop $out/etc/xdg/autostart/
+  '';
+
+  meta = with lib; {
+    description = "Desktop utility that helps preventing repetitive strain injuries by keeping track of usage patterns and periodically informing the user to take breaks.";
+    homepage = "https://github.com/zefr0x/ianny";
+    license = licenses.gpl3;
+    mainProgram = "ianny";
+    maintainers = with maintainers; [ max-amb ];
+    platforms = platforms.linux;
+  };
+}