summary refs log tree commit diff
path: root/pkgs/servers/owncloud/default.nix
blob: ef01a3976bccb93981d4625829746928a18bee63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
  name= "owncloud-${version}";
  version = "7.0.4";

  src = fetchurl {
    url = "https://download.owncloud.org/community/${name}.tar.bz2";
    sha256 = "0djgqdyxkrh1wc4sn21fmdjr09dkmnjm3gs6lbkp6yn5fpbzhybi";
  };

  installPhase =
    ''
      mkdir -p $out
      find . -maxdepth 1 -execdir cp -r '{}' $out \;

      substituteInPlace $out/lib/base.php \
        --replace 'OC_Config::$object = new \OC\Config(self::$configDir);' \
                  'self::$configDir = getenv("OC_CONFIG_PATH"); OC_Config::$object = new \OC\Config(self::$configDir);'
    '';

  meta = {
    description = "An enterprise file sharing solution for online collaboration and storage";
    homepage = https://owncloud.org;
    maintainers = with stdenv.lib.maintainers; [ matejc ];
    license = stdenv.lib.licenses.agpl3Plus;
  };

}