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 17:13:47 +0100
committerarcher-65 <mario.liguori.056@gmail.com>2022-11-14 17:26:06 +0100
commit3c9ab688dd3a33b2be3ad172eea21818bc8bd521 (patch)
treee704565cf0906ea29a93095aa2a616f29aafa5d1 /pkgs/applications/networking/mailreaders
parent804fddcf9b0a8f556a9b38efbc7c8eec1de52444 (diff)
notmuch-mailmover: correct hash
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix
index 73bb50a0fe402..04af1a4ae6d7b 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix
@@ -1,4 +1,5 @@
 {
+  notmuch,
   lib,
   stdenv,
   fetchFromGitHub,
@@ -12,10 +13,12 @@ rustPlatform.buildRustPackage rec {
     owner = "michaeladler";
     repo = pname;
     rev = "v${version}";
-    sha256 = lib.fakeSha256;
+    sha256 = "sha256-b2Q1JcXIp56Niv5kdPgQSM91e8hPPdyhWIG4f7kQn78=";
   };
 
-  cargoSha256 = lib.fakeSha256;
+  buildInputs = [notmuch];
+
+  cargoSha256 = "sha256-AW0mCdQN3WJhSErJ/MqnNIsRX+C6Pb/zHCQh7v/70MU=";
 
   meta = with lib; {
     description = "Application to assign notmuch tagged mails to IMAP folders";