mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
google-app-engine-go-sdk: remove platform assert
This commit is contained in:
parent
0146f18390
commit
682b0ec0e1
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user