3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #5518 from tomberek/patch-1

Bump minecraft-server to 1.8.1
This commit is contained in:
Austin Seipp 2015-01-08 02:56:23 -06:00
commit 23a9bf85d8

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "minecraft-server-${version}"; name = "minecraft-server-${version}";
version = "1.7.10"; version = "1.8.1";
src = fetchurl { src = fetchurl {
url = "http://s3.amazonaws.com/Minecraft.Download/versions/${version}/minecraft_server.${version}.jar"; url = "http://s3.amazonaws.com/Minecraft.Download/versions/${version}/minecraft_server.${version}.jar";
sha256 = "1z7kf8wm27yq10rnlwlig7c2vc45x3sfbxslw4lxh9201kq70267"; sha256 = "0icqkcj28l69p618vh0aah9cnvpwgvwsqlw1n5cph23q38d5lpzg";
}; };
installPhase = '' installPhase = ''
@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
homepage = "https://minecraft.net"; homepage = "https://minecraft.net";
license = stdenv.lib.licenses.unfreeRedistributable; license = stdenv.lib.licenses.unfreeRedistributable;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ stdenv.lib.maintainers.thoughtpolice stdenv.lib.maintainers.tomberek ];
}; };
} }