Merge pull request #201203 from archer-65/add/notmuch-mailmover
notmuch-mailmover: init at 0.1.0
This commit is contained in:
commit
e2c00264d2
2 changed files with 31 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue