Stephane Schitter 2022-08-06 19:35:47 +02:00
parent 981421c480
commit 6412c1e483
2 changed files with 12 additions and 0 deletions

View File

@ -7,4 +7,5 @@
carddav = callPackage ./carddav { };
persistent_login = callPackage ./persistent_login { };
thunderbird_labels = callPackage ./thunderbird_labels { };
}

View File

@ -0,0 +1,11 @@
{ roundcubePlugin, fetchzip }:
roundcubePlugin rec {
pname = "thunderbird_labels";
version = "1.6.0";
src = fetchzip {
url = "https://github.com/mike-kfed/roundcube-thunderbird_labels/archive/refs/tags/v${version}.tar.gz";
sha256 = "09hh3d0n12b8ywkazh8kj3xgn128k35hyjhpa98c883b6b9y8kif";
};
}