From 13e0d337037b3f59eccbbdf3bc1fe7b1e55c93fd Mon Sep 17 00:00:00 2001 From: Rick van Schijndel Date: Sun, 29 May 2022 11:09:52 +0200 Subject: [PATCH] treewide: pkgs/development/tools: mark broken for darwin --- pkgs/development/tools/analysis/coan/default.nix | 1 + pkgs/development/tools/analysis/dotenv-linter/default.nix | 4 +++- pkgs/development/tools/analysis/panopticon/default.nix | 3 ++- pkgs/development/tools/analysis/qcachegrind/default.nix | 1 + pkgs/development/tools/analysis/radare2/default.nix | 1 + pkgs/development/tools/analysis/tartan/default.nix | 1 + pkgs/development/tools/azcopy/default.nix | 3 ++- pkgs/development/tools/golangci-lint/default.nix | 3 ++- pkgs/development/tools/hobbes/default.nix | 1 + pkgs/development/tools/kafka-delta-ingest/default.nix | 1 + pkgs/development/tools/misc/xxgdb/default.nix | 1 + pkgs/development/tools/parsing/ragel/default.nix | 1 + pkgs/development/tools/pgloader/default.nix | 1 + pkgs/development/tools/pqrs/default.nix | 3 ++- pkgs/development/tools/regclient/default.nix | 3 ++- pkgs/development/tools/scenebuilder/default.nix | 1 + pkgs/development/tools/scenic-view/default.nix | 1 + pkgs/development/tools/simavr/default.nix | 1 + 18 files changed, 25 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/analysis/coan/default.nix b/pkgs/development/tools/analysis/coan/default.nix index b7261705545..3a1b26f1cc8 100644 --- a/pkgs/development/tools/analysis/coan/default.nix +++ b/pkgs/development/tools/analysis/coan/default.nix @@ -22,6 +22,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { + broken = stdenv.isDarwin; description = "The C preprocessor chainsaw"; longDescription = '' A software engineering tool for analysing preprocessor-based diff --git a/pkgs/development/tools/analysis/dotenv-linter/default.nix b/pkgs/development/tools/analysis/dotenv-linter/default.nix index 49331dbfceb..f1cf795d2e7 100644 --- a/pkgs/development/tools/analysis/dotenv-linter/default.nix +++ b/pkgs/development/tools/analysis/dotenv-linter/default.nix @@ -1,4 +1,5 @@ -{ lib +{ stdenv +, lib , rustPlatform , fetchFromGitHub }: @@ -17,6 +18,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "sha256-q59hpnXc00OzrJk1KOWbIPQYfIE+7ku9XtTDXHgwQBg="; meta = with lib; { + broken = stdenv.isDarwin; description = "Lightning-fast linter for .env files. Written in Rust"; homepage = "https://dotenv-linter.github.io"; license = licenses.mit; diff --git a/pkgs/development/tools/analysis/panopticon/default.nix b/pkgs/development/tools/analysis/panopticon/default.nix index 500ca632fcf..953e371d182 100644 --- a/pkgs/development/tools/analysis/panopticon/default.nix +++ b/pkgs/development/tools/analysis/panopticon/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchFromGitHub, rustPlatform, qt5, git, cmake +{ stdenv, lib, fetchFromGitHub, rustPlatform, qt5, git, cmake , pkg-config, makeWrapper }: rustPlatform.buildRustPackage rec { @@ -36,6 +36,7 @@ rustPlatform.buildRustPackage rec { ''; meta = with lib; { + broken = stdenv.isDarwin; description = "A libre cross-platform disassembler"; longDescription = '' Panopticon is a cross platform disassembler for reverse diff --git a/pkgs/development/tools/analysis/qcachegrind/default.nix b/pkgs/development/tools/analysis/qcachegrind/default.nix index ff27c68bee3..6a463c56609 100644 --- a/pkgs/development/tools/analysis/qcachegrind/default.nix +++ b/pkgs/development/tools/analysis/qcachegrind/default.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation { ''; meta = with lib; { + broken = stdenv.isDarwin; description = "A Qt GUI to visualize profiling data"; license = licenses.gpl2Plus; platforms = platforms.unix; diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix index 6bb7d2545c0..8547748f7f8 100644 --- a/pkgs/development/tools/analysis/radare2/default.nix +++ b/pkgs/development/tools/analysis/radare2/default.nix @@ -110,6 +110,7 @@ stdenv.mkDerivation rec { ]; meta = with lib; { + broken = stdenv.isDarwin; description = "unix-like reverse engineering framework and commandline tools"; homepage = "https://radare.org/"; license = licenses.gpl2Plus; diff --git a/pkgs/development/tools/analysis/tartan/default.nix b/pkgs/development/tools/analysis/tartan/default.nix index 0ac4bf32528..1106d017cba 100644 --- a/pkgs/development/tools/analysis/tartan/default.nix +++ b/pkgs/development/tools/analysis/tartan/default.nix @@ -43,6 +43,7 @@ stdenv.mkDerivation rec { }; meta = with lib; { + broken = stdenv.isDarwin; description = "Tools and Clang plugins for developing code with GLib"; homepage = "https://freedesktop.org/wiki/Software/tartan"; license = licenses.gpl3Plus; diff --git a/pkgs/development/tools/azcopy/default.nix b/pkgs/development/tools/azcopy/default.nix index 47a7bf723f0..89436a31068 100644 --- a/pkgs/development/tools/azcopy/default.nix +++ b/pkgs/development/tools/azcopy/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchFromGitHub, buildGoModule }: +{ stdenv, lib, fetchFromGitHub, buildGoModule }: buildGoModule rec { pname = "azure-storage-azcopy"; @@ -22,6 +22,7 @@ buildGoModule rec { ''; meta = with lib; { + broken = stdenv.isDarwin; maintainers = with maintainers; [ colemickens ]; license = licenses.mit; description = "The new Azure Storage data transfer utility - AzCopy v10"; diff --git a/pkgs/development/tools/golangci-lint/default.nix b/pkgs/development/tools/golangci-lint/default.nix index b47bdcbc154..a39bbe8c3fd 100644 --- a/pkgs/development/tools/golangci-lint/default.nix +++ b/pkgs/development/tools/golangci-lint/default.nix @@ -1,4 +1,4 @@ -{ buildGoModule, fetchFromGitHub, lib, installShellFiles }: +{ stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }: buildGoModule rec { pname = "golangci-lint"; @@ -31,6 +31,7 @@ buildGoModule rec { ''; meta = with lib; { + broken = stdenv.isDarwin; description = "Fast linters Runner for Go"; homepage = "https://golangci-lint.run/"; license = licenses.gpl3Plus; diff --git a/pkgs/development/tools/hobbes/default.nix b/pkgs/development/tools/hobbes/default.nix index 1dd28af3bf4..148a1ccae08 100644 --- a/pkgs/development/tools/hobbes/default.nix +++ b/pkgs/development/tools/hobbes/default.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation { checkTarget = "test"; meta = with lib; { + broken = stdenv.isDarwin; description = "A language and an embedded JIT compiler"; longDescription = '' Hobbes is a a language, embedded compiler, and runtime for efficient diff --git a/pkgs/development/tools/kafka-delta-ingest/default.nix b/pkgs/development/tools/kafka-delta-ingest/default.nix index 9287b4d9087..cd46711a0f0 100644 --- a/pkgs/development/tools/kafka-delta-ingest/default.nix +++ b/pkgs/development/tools/kafka-delta-ingest/default.nix @@ -37,6 +37,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; meta = with lib; { + broken = stdenv.isDarwin; description = "A highly efficient daemon for streaming data from Kafka into Delta Lake"; homepage = "https://github.com/delta-io/kafka-delta-ingest"; license = licenses.asl20; diff --git a/pkgs/development/tools/misc/xxgdb/default.nix b/pkgs/development/tools/misc/xxgdb/default.nix index cd14705e1eb..480500b92e1 100644 --- a/pkgs/development/tools/misc/xxgdb/default.nix +++ b/pkgs/development/tools/misc/xxgdb/default.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { + broken = stdenv.isDarwin; description = "A simple but powerful graphical interface to gdb"; license = licenses.mit; maintainers = with maintainers; [ emilytrau ]; diff --git a/pkgs/development/tools/parsing/ragel/default.nix b/pkgs/development/tools/parsing/ragel/default.nix index 8e000cd0fc2..e4a4ab162fa 100644 --- a/pkgs/development/tools/parsing/ragel/default.nix +++ b/pkgs/development/tools/parsing/ragel/default.nix @@ -26,6 +26,7 @@ let doCheck = true; meta = with lib; { + broken = stdenv.isDarwin; homepage = "https://www.colm.net/open-source/ragel/"; description = "State machine compiler"; inherit license; diff --git a/pkgs/development/tools/pgloader/default.nix b/pkgs/development/tools/pgloader/default.nix index b33216a5fac..7e4c5c56ba3 100644 --- a/pkgs/development/tools/pgloader/default.nix +++ b/pkgs/development/tools/pgloader/default.nix @@ -29,6 +29,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { + broken = stdenv.isDarwin; homepage = "https://pgloader.io/"; description = "Loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL"; maintainers = with maintainers; [ mguentner ]; diff --git a/pkgs/development/tools/pqrs/default.nix b/pkgs/development/tools/pqrs/default.nix index 24efea2036a..8ae5fd6450f 100644 --- a/pkgs/development/tools/pqrs/default.nix +++ b/pkgs/development/tools/pqrs/default.nix @@ -1,4 +1,4 @@ -{ lib, rustPlatform, fetchFromGitHub }: +{ stdenv, lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "pqrs"; @@ -14,6 +14,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "0mjwazsnryhlfyzcik8052q0imz5f104x86k6b5rncbbbjaj17q1"; meta = with lib; { + broken = stdenv.isDarwin; description = "CLI tool to inspect Parquet files"; homepage = "https://github.com/manojkarthick/pqrs"; license = with licenses; [ mit /* or */ asl20 ]; diff --git a/pkgs/development/tools/regclient/default.nix b/pkgs/development/tools/regclient/default.nix index e046b5b0029..2eb28d8b36f 100644 --- a/pkgs/development/tools/regclient/default.nix +++ b/pkgs/development/tools/regclient/default.nix @@ -1,4 +1,4 @@ -{ lib, buildGoModule, fetchFromGitHub }: +{ stdenv, lib, buildGoModule, fetchFromGitHub }: let bins = [ "regbot" "regctl" "regsync" ]; in @@ -33,6 +33,7 @@ buildGoModule rec { ); meta = with lib; { + broken = stdenv.isDarwin; description = "Docker and OCI Registry Client in Go and tooling using those libraries"; homepage = "https://github.com/regclient/regclient"; license = licenses.asl20; diff --git a/pkgs/development/tools/scenebuilder/default.nix b/pkgs/development/tools/scenebuilder/default.nix index 77928a1f22a..a3a0dba509b 100644 --- a/pkgs/development/tools/scenebuilder/default.nix +++ b/pkgs/development/tools/scenebuilder/default.nix @@ -106,6 +106,7 @@ in stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; meta = with lib; { + broken = stdenv.isDarwin; description = "A visual, drag'n'drop, layout tool for designing JavaFX application user interfaces."; homepage = "https://gluonhq.com/products/scene-builder/"; license = licenses.bsd3; diff --git a/pkgs/development/tools/scenic-view/default.nix b/pkgs/development/tools/scenic-view/default.nix index 1322cfc751a..3d53a117de7 100644 --- a/pkgs/development/tools/scenic-view/default.nix +++ b/pkgs/development/tools/scenic-view/default.nix @@ -96,6 +96,7 @@ in stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; meta = with lib; { + broken = stdenv.isDarwin; description = "JavaFx application to visualize and modify the scenegraph of running JavaFx applications."; longDescription = '' A JavaFX application designed to make it simple to understand the current state of your application scenegraph diff --git a/pkgs/development/tools/simavr/default.nix b/pkgs/development/tools/simavr/default.nix index b7490d4108d..8aa9ccd5388 100644 --- a/pkgs/development/tools/simavr/default.nix +++ b/pkgs/development/tools/simavr/default.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation rec { checkTarget = "-C tests run_tests"; meta = with lib; { + broken = stdenv.isDarwin; description = "A lean and mean Atmel AVR simulator"; homepage = "https://github.com/buserror/simavr"; license = licenses.gpl3;