1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

vscode-extensions.vadimcn.vscode-lldb: x86_64-linux only

This commit is contained in:
oxalica 2021-02-06 00:14:13 +08:00
parent 1646652b4a
commit 2cc65ccf6d
No known key found for this signature in database
GPG key ID: CED392DE0C483D00

View file

@ -95,6 +95,7 @@ in stdenv.mkDerivation rec {
homepage = "https://github.com/vadimcn/vscode-lldb"; homepage = "https://github.com/vadimcn/vscode-lldb";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ oxalica ]; maintainers = with maintainers; [ oxalica ];
platforms = platforms.all; # Build failed on x86_64-darwin.
platforms = [ "x86_64-linux" ];
}; };
} }