nixpkgs/pkgs/applications/networking/mailreaders/notmuch/notmuch-mailmover.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
598 B
Nix
Raw Normal View History

2022-11-14 15:56:16 +00:00
{
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;
};
}