nixpkgs/pkgs/servers/roundcube/default.nix
Maciej Krüger 105602b5ae
roundcube: remove composer.json-dist to prevent roundcube from trying to update composer.json
this removes the warning

```
WARNING: unable to update composer.json!
```

since it might be confusing people, as nixOS already handles dependency updates
2021-07-20 15:21:34 +02:00

37 lines
1,012 B
Nix

{ fetchurl, lib, stdenv, buildEnv, roundcube, roundcubePlugins }:
stdenv.mkDerivation rec {
pname = "roundcube";
version = "1.4.11";
src = fetchurl {
url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/roundcubemail-${version}-complete.tar.gz";
sha256 = "sha256-rHMZBwwwX8LIjHcjYFVi2GBwMHMr7ukxzbQJHPBeabc=";
};
patches = [ ./0001-Don-t-resolve-symlinks-when-trying-to-find-INSTALL_P.patch ];
dontBuild = true;
installPhase = ''
mkdir $out
cp -r * $out/
ln -sf /etc/roundcube/config.inc.php $out/config/config.inc.php
rm -rf $out/installer
# shut up updater
rm $out/composer.json-dist
'';
passthru.withPlugins = f: buildEnv {
name = "${roundcube.name}-with-plugins";
paths = (f roundcubePlugins) ++ [ roundcube ];
};
meta = {
description = "Open Source Webmail Software";
maintainers = with lib.maintainers; [ vskilet globin ma27 ];
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
};
}