{ stdenv, fetchurl, fetchpatch }: stdenv.mkDerivation rec { name= "nextcloud-${version}"; version = "12.0.0"; src = fetchurl { url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2"; sha256 = "0gr47bwwni7y33qz3l8g3sjrqridykxiid2jlmjdaz35bvq9r78v"; }; installPhase = '' mkdir -p $out/ cp -R . $out/ ''; meta = { description = "Sharing solution for files, calendars, contacts and more"; homepage = https://nextcloud.com; maintainers = with stdenv.lib.maintainers; [ schneefux ]; license = stdenv.lib.licenses.agpl3Plus; platforms = with stdenv.lib.platforms; unix; }; }