b2266ed09b
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.
8 lines
279 B
Nix
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=";
|
|
};
|
|
}
|