Merge pull request #201203 from archer-65/add/notmuch-mailmover

notmuch-mailmover: init at 0.1.0
This commit is contained in:
Ryan Lahfa 2022-12-04 15:38:07 +01:00 committed by GitHub
commit e2c00264d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ notmuch
, lib
, stdenv
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "notmuch-mailmover";
version = "0.1.0";
src = fetchFromGitHub {
owner = "michaeladler";
repo = pname;
rev = "v${version}";
sha256 = "sha256-b2Q1JcXIp56Niv5kdPgQSM91e8hPPdyhWIG4f7kQn78=";
};
buildInputs = [ notmuch ];
cargoSha256 = "sha256-AW0mCdQN3WJhSErJ/MqnNIsRX+C6Pb/zHCQh7v/70MU=";
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; [ michaeladler archer-65 ];
platforms = platforms.all;
};
}

View file

@ -31041,6 +31041,8 @@ with pkgs;
pythonPackages = python3Packages;
};
notmuch-mailmover = callPackage ../applications/networking/mailreaders/notmuch/notmuch-mailmover.nix { };
notejot = callPackage ../applications/misc/notejot { };
notmuch-mutt = callPackage ../applications/networking/mailreaders/notmuch/mutt.nix { };