3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #185587 from haskelious/fix/roundcubePlugin_thunderbird_label

roundcubePlugins.thunderbird_labels: init at 1.4.12
This commit is contained in:
Maximilian Bosch 2022-11-08 22:54:33 +01:00 committed by GitHub
commit f05bab62ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -8,4 +8,5 @@
carddav = callPackage ./carddav { };
contextmenu = callPackage ./contextmenu { };
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";
};
}