lol

treewide: pkgs/development/tools: mark broken for darwin

authored by

Rick van Schijndel and committed by
Janne Heß
13e0d337 0b45cae8

+25 -6
+1
pkgs/development/tools/analysis/coan/default.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "The C preprocessor chainsaw"; 26 27 longDescription = '' 27 28 A software engineering tool for analysing preprocessor-based
+3 -1
pkgs/development/tools/analysis/dotenv-linter/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 5 }: ··· 17 18 cargoSha256 = "sha256-q59hpnXc00OzrJk1KOWbIPQYfIE+7ku9XtTDXHgwQBg="; 18 19 19 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 20 22 description = "Lightning-fast linter for .env files. Written in Rust"; 21 23 homepage = "https://dotenv-linter.github.io"; 22 24 license = licenses.mit;
+2 -1
pkgs/development/tools/analysis/panopticon/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, qt5, git, cmake 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, qt5, git, cmake 2 2 , pkg-config, makeWrapper }: 3 3 4 4 rustPlatform.buildRustPackage rec { ··· 36 36 ''; 37 37 38 38 meta = with lib; { 39 + broken = stdenv.isDarwin; 39 40 description = "A libre cross-platform disassembler"; 40 41 longDescription = '' 41 42 Panopticon is a cross platform disassembler for reverse
+1
pkgs/development/tools/analysis/qcachegrind/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A Qt GUI to visualize profiling data"; 39 40 license = licenses.gpl2Plus; 40 41 platforms = platforms.unix;
+1
pkgs/development/tools/analysis/radare2/default.nix
··· 110 110 ]; 111 111 112 112 meta = with lib; { 113 + broken = stdenv.isDarwin; 113 114 description = "unix-like reverse engineering framework and commandline tools"; 114 115 homepage = "https://radare.org/"; 115 116 license = licenses.gpl2Plus;
+1
pkgs/development/tools/analysis/tartan/default.nix
··· 43 43 }; 44 44 45 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 46 47 description = "Tools and Clang plugins for developing code with GLib"; 47 48 homepage = "https://freedesktop.org/wiki/Software/tartan"; 48 49 license = licenses.gpl3Plus;
+2 -1
pkgs/development/tools/azcopy/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 2 3 3 buildGoModule rec { 4 4 pname = "azure-storage-azcopy"; ··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 maintainers = with maintainers; [ colemickens ]; 26 27 license = licenses.mit; 27 28 description = "The new Azure Storage data transfer utility - AzCopy v10";
+2 -1
pkgs/development/tools/golangci-lint/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib, installShellFiles }: 1 + { stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }: 2 2 3 3 buildGoModule rec { 4 4 pname = "golangci-lint"; ··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "Fast linters Runner for Go"; 35 36 homepage = "https://golangci-lint.run/"; 36 37 license = licenses.gpl3Plus;
+1
pkgs/development/tools/hobbes/default.nix
··· 33 33 checkTarget = "test"; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "A language and an embedded JIT compiler"; 37 38 longDescription = '' 38 39 Hobbes is a a language, embedded compiler, and runtime for efficient
+1
pkgs/development/tools/kafka-delta-ingest/default.nix
··· 37 37 doCheck = false; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 description = "A highly efficient daemon for streaming data from Kafka into Delta Lake"; 41 42 homepage = "https://github.com/delta-io/kafka-delta-ingest"; 42 43 license = licenses.asl20;
+1
pkgs/development/tools/misc/xxgdb/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A simple but powerful graphical interface to gdb"; 39 40 license = licenses.mit; 40 41 maintainers = with maintainers; [ emilytrau ];
+1
pkgs/development/tools/parsing/ragel/default.nix
··· 26 26 doCheck = true; 27 27 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 homepage = "https://www.colm.net/open-source/ragel/"; 30 31 description = "State machine compiler"; 31 32 inherit license;
+1
pkgs/development/tools/pgloader/default.nix
··· 29 29 ''; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 homepage = "https://pgloader.io/"; 33 34 description = "Loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL"; 34 35 maintainers = with maintainers; [ mguentner ];
+2 -1
pkgs/development/tools/pqrs/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { stdenv, lib, rustPlatform, fetchFromGitHub }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "pqrs"; ··· 14 14 cargoSha256 = "0mjwazsnryhlfyzcik8052q0imz5f104x86k6b5rncbbbjaj17q1"; 15 15 16 16 meta = with lib; { 17 + broken = stdenv.isDarwin; 17 18 description = "CLI tool to inspect Parquet files"; 18 19 homepage = "https://github.com/manojkarthick/pqrs"; 19 20 license = with licenses; [ mit /* or */ asl20 ];
+2 -1
pkgs/development/tools/regclient/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 let bins = [ "regbot" "regctl" "regsync" ]; in 4 4 ··· 33 33 ); 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "Docker and OCI Registry Client in Go and tooling using those libraries"; 37 38 homepage = "https://github.com/regclient/regclient"; 38 39 license = licenses.asl20;
+1
pkgs/development/tools/scenebuilder/default.nix
··· 106 106 desktopItems = [ desktopItem ]; 107 107 108 108 meta = with lib; { 109 + broken = stdenv.isDarwin; 109 110 description = "A visual, drag'n'drop, layout tool for designing JavaFX application user interfaces."; 110 111 homepage = "https://gluonhq.com/products/scene-builder/"; 111 112 license = licenses.bsd3;
+1
pkgs/development/tools/scenic-view/default.nix
··· 96 96 desktopItems = [ desktopItem ]; 97 97 98 98 meta = with lib; { 99 + broken = stdenv.isDarwin; 99 100 description = "JavaFx application to visualize and modify the scenegraph of running JavaFx applications."; 100 101 longDescription = '' 101 102 A JavaFX application designed to make it simple to understand the current state of your application scenegraph
+1
pkgs/development/tools/simavr/default.nix
··· 35 35 checkTarget = "-C tests run_tests"; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A lean and mean Atmel AVR simulator"; 39 40 homepage = "https://github.com/buserror/simavr"; 40 41 license = licenses.gpl3;