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
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,7 +1,5 @@
{ stdenv, fetchzip, python27, python27Packages, makeWrapper }:
assert stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin";
with python27Packages;
stdenv.mkDerivation rec {
@ -38,7 +36,7 @@ stdenv.mkDerivation rec {
version = version;
homepage = "https://cloud.google.com/appengine/docs/go/";
license = licenses.asl20;
platforms = with platforms; linux ++ darwin;
platforms = ["x86_64-linux" "x86_64-darwin"];
maintainers = with maintainers; [ lufia ];
};
}