b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
11 lines
304 B
Nix
11 lines
304 B
Nix
{ roundcubePlugin, fetchzip }:
|
|
|
|
roundcubePlugin rec {
|
|
pname = "carddav";
|
|
version = "4.4.3";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/mstilkerich/rcmcarddav/releases/download/v${version}/carddav-v${version}.tar.gz";
|
|
sha256 = "0xm2x6r0j8dpkybxq28lbwpbmxaa52z8jnw3yaszvmx04zsr5mn8";
|
|
};
|
|
}
|