nixpkgs-suyu/pkgs/servers/web-apps/wordpress/packages/thirdparty.nix
Colin Arnott b2266ed09b
wordpressPackages.plugins.civicrm: init at 5.56.0
There are a number of third party wordpress components that cannot be
trivially fetched via wp4nix. As such, we have broken out a file that
contains these derivations and merges them back into wordpressPackages.
2023-01-04 09:28:35 +00:00

8 lines
279 B
Nix

{fetchzip}: {
plugins.civicrm = fetchzip rec {
name = "civicrm";
version = "5.56.0";
url = "https://storage.googleapis.com/${name}/${name}-stable/${version}/${name}-${version}-wordpress.zip";
hash = "sha256-XsNFxVL0LF+OHlsqjjTV41x9ERLwMDq9BnKKP3Px2aI=";
};
}