google-app-engine-go-sdk: remove platform assert

This commit is contained in:
Jörg Thalheim
2017-05-31 23:09:29 +01:00
parent 0146f18390
commit 682b0ec0e1
@@ -1,7 +1,5 @@
{ stdenv, fetchzip, python27, python27Packages, makeWrapper }: { stdenv, fetchzip, python27, python27Packages, makeWrapper }:
assert stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin";
with python27Packages; with python27Packages;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -38,7 +36,7 @@ stdenv.mkDerivation rec {
version = version; version = version;
homepage = "https://cloud.google.com/appengine/docs/go/"; homepage = "https://cloud.google.com/appengine/docs/go/";
license = licenses.asl20; license = licenses.asl20;
platforms = with platforms; linux ++ darwin; platforms = ["x86_64-linux" "x86_64-darwin"];
maintainers = with maintainers; [ lufia ]; maintainers = with maintainers; [ lufia ];
}; };
} }