notmuch-mailmover: init at 0.1.0

This commit is contained in:
archer-65 2022-11-14 16:56:16 +01:00
parent bd47af6aed
commit 804fddcf9b
No known key found for this signature in database
GPG key ID: 56FC322EE7325AB1

View file

@ -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;
};
}