mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
![Colin Arnott](/assets/img/avatar_default.png)
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.
9 lines
279 B
Nix
9 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=";
|
|
};
|
|
}
|