summary refs log tree commit diff
diff options
context:
space:
mode:
authorStephane Schitter <stephane@frozenkiwi.net>2022-08-06 19:35:47 +0200
committerStephane Schitter <stephane@frozenkiwi.net>2022-11-08 21:56:57 +0100
commit6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf (patch)
tree8402b251ede81563b0ca24ac2b79b1b18b068cd6
parent981421c4800c9a0de583c13fcfbf2e0127f1970f (diff)
downloadnixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar.gz
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar.bz2
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar.lz
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar.xz
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.tar.zst
nixpkgs-6412c1e483cdf5ba87ee5f9a4d0e76d1dd9f98cf.zip
roundcubePlugins.thunderbird_labels: init at 1.6.0
https://github.com/mike-kfed/roundcube-thunderbird_labels
https://github.com/mike-kfed/roundcube-thunderbird_labels/releases/tag/v1.6.0
-rw-r--r--pkgs/servers/roundcube/plugins/plugins.nix1
-rw-r--r--pkgs/servers/roundcube/plugins/thunderbird_labels/default.nix11
2 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/servers/roundcube/plugins/plugins.nix b/pkgs/servers/roundcube/plugins/plugins.nix
index a9c73874b69..21fe2fa22bb 100644
--- a/pkgs/servers/roundcube/plugins/plugins.nix
+++ b/pkgs/servers/roundcube/plugins/plugins.nix
@@ -7,4 +7,5 @@
 
   carddav = callPackage ./carddav { };
   persistent_login = callPackage ./persistent_login { };
+  thunderbird_labels = callPackage ./thunderbird_labels { };
 }
diff --git a/pkgs/servers/roundcube/plugins/thunderbird_labels/default.nix b/pkgs/servers/roundcube/plugins/thunderbird_labels/default.nix
new file mode 100644
index 00000000000..f2087056488
--- /dev/null
+++ b/pkgs/servers/roundcube/plugins/thunderbird_labels/default.nix
@@ -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";
+  };
+}