about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorarcher-65 <mario.liguori.056@gmail.com>2022-11-14 16:56:16 +0100
committerarcher-65 <mario.liguori.056@gmail.com>2022-11-14 17:24:20 +0100
commit804fddcf9b0a8f556a9b38efbc7c8eec1de52444 (patch)
treeb22b4ba3f57da9ef82264502637481caaebbc838 /pkgs/applications/networking/mailreaders
parentbd47af6aede83c0e5396f782236dffe65f6da82f (diff)
notmuch-mailmover: init at 0.1.0
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix
new file mode 100644
index 0000000000000..73bb50a0fe402
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix
@@ -0,0 +1,27 @@
+{
+  lib,
+  stdenv,
+  fetchFromGitHub,
+  rustPlatform,
+}:
+rustPlatform.buildRustPackage rec {
+  pname = "notmuch-mailmover";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "michaeladler";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = lib.fakeSha256;
+  };
+
+  cargoSha256 = lib.fakeSha256;
+
+  meta = with lib; {
+    description = "Application to assign notmuch tagged mails to IMAP folders";
+    homepage = "https://github.com/michaeladler/notmuch-mailmover/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [archer-65];
+    platforms = platforms.all;
+  };
+}