Merge pull request #173671 from Mindavi/treewide/broken-zhf
treewide: start marking packages broken
This commit is contained in:
commit
bfc5086ae9
@ -74,5 +74,8 @@ stdenv.mkDerivation rec {
|
|||||||
license = with licenses; [ gpl3Only ];
|
license = with licenses; [ gpl3Only ];
|
||||||
maintainers = with maintainers; [ magnetophon ];
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
# error: 'vvtanh' was not declared in this scope; did you mean 'tanh'?
|
||||||
|
# error: no matching function for call to 'juce::dsp::SIMDRegister<double>::SIMDRegister(xsimd::simd_batch_traits<xsimd::batch<double, 2> >::batch_bool_type)'
|
||||||
|
broken = stdenv.isAarch64; # since 2021-12-27 on hydra (update to 2.10): https://hydra.nixos.org/build/162558991
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -63,5 +63,8 @@ stdenv.mkDerivation rec {
|
|||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3;
|
||||||
maintainers = [ lib.maintainers.magnetophon ];
|
maintainers = [ lib.maintainers.magnetophon ];
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
|
# ../../utils/CarlaPluginUI.cpp:31:10: fatal error: 'Cocoa/Cocoa.h' file not found
|
||||||
|
# # import <Cocoa/Cocoa.h>
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "An LV2 sample based drum plugin";
|
description = "An LV2 sample based drum plugin";
|
||||||
homepage = "https://www.drumgizmo.org";
|
homepage = "https://www.drumgizmo.org";
|
||||||
license = licenses.lgpl3Plus;
|
license = licenses.lgpl3Plus;
|
||||||
|
@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "LV2 EQ plugins and more, with 64 bit processing";
|
description = "LV2 EQ plugins and more, with 64 bit processing";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Up to 10-Bands parametric equalizer with mono and stereo versions.
|
Up to 10-Bands parametric equalizer with mono and stereo versions.
|
||||||
|
@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "The physical modeling instruments included with faust, compiled as jack standalone and lv2 instruments";
|
description = "The physical modeling instruments included with faust, compiled as jack standalone and lv2 instruments";
|
||||||
homepage = "https://ccrma.stanford.edu/~rmichon/faustSTK/";
|
homepage = "https://ccrma.stanford.edu/~rmichon/faustSTK/";
|
||||||
license = licenses.stk;
|
license = licenses.stk;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, mkDerivation
|
, mkDerivation
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pipewire
|
, pipewire
|
||||||
@ -86,6 +87,7 @@ in
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib;{
|
meta = with lib;{
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "An audio effect processor for PipeWire clients";
|
description = "An audio effect processor for PipeWire clients";
|
||||||
homepage = "https://github.com/Audio4Linux/JDSP4Linux";
|
homepage = "https://github.com/Audio4Linux/JDSP4Linux";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchFromGitHub, buildGoModule, alsa-lib }:
|
{ stdenv, lib, fetchFromGitHub, buildGoModule, alsa-lib }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "jellycli";
|
pname = "jellycli";
|
||||||
@ -21,6 +21,7 @@ buildGoModule rec {
|
|||||||
buildInputs = [ alsa-lib ];
|
buildInputs = [ alsa-lib ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Jellyfin terminal client";
|
description = "Jellyfin terminal client";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Terminal music player, works with Jellyfin (>= 10.6) , Emby (>= 4.4), and
|
Terminal music player, works with Jellyfin (>= 10.6) , Emby (>= 4.4), and
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, mopidy
|
, mopidy
|
||||||
, python3Packages
|
, python3Packages
|
||||||
}:
|
}:
|
||||||
@ -22,6 +23,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/mopidy/mopidy-local";
|
homepage = "https://github.com/mopidy/mopidy-local";
|
||||||
description = "Mopidy extension for playing music from your local music archive";
|
description = "Mopidy extension for playing music from your local music archive";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
@ -29,6 +29,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy";
|
cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "An automatic music sorter (based on ID3 tags)";
|
description = "An automatic music sorter (based on ID3 tags)";
|
||||||
homepage = "https://github.com/quebin31/muso";
|
homepage = "https://github.com/quebin31/muso";
|
||||||
license = with licenses; [ gpl3Plus ];
|
license = with licenses; [ gpl3Plus ];
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pkg-config
|
, pkg-config
|
||||||
@ -29,6 +30,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A modern Volume Mixer for PulseAudio";
|
description = "A modern Volume Mixer for PulseAudio";
|
||||||
homepage = "https://github.com/Aurailus/Myxer";
|
homepage = "https://github.com/Aurailus/Myxer";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Application for practicing playing musical scores and ear training";
|
description = "Application for practicing playing musical scores and ear training";
|
||||||
homepage = "https://nootka.sourceforge.io/";
|
homepage = "https://nootka.sourceforge.io/";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "LADSPA plugins based on filters of nova";
|
description = "LADSPA plugins based on filters of nova";
|
||||||
homepage = "http://klingt.org/~tim/nova-filters/";
|
homepage = "http://klingt.org/~tim/nova-filters/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
@ -28,6 +28,7 @@ stdenv.mkDerivation {
|
|||||||
] ++ additionalBuildInputs;
|
] ++ additionalBuildInputs;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = description;
|
description = description;
|
||||||
homepage = "https://open-music-kontrollers.ch/lv2/${pname}:";
|
homepage = "https://open-music-kontrollers.ch/lv2/${pname}:";
|
||||||
license = licenses.artistic2;
|
license = licenses.artistic2;
|
||||||
|
@ -38,6 +38,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Time domain pitch tracker for Pure Data";
|
description = "Time domain pitch tracker for Pure Data";
|
||||||
homepage = "http://www.katjaas.nl/helmholtz/helmholtz.html";
|
homepage = "http://www.katjaas.nl/helmholtz/helmholtz.html";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib
|
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib
|
||||||
, wrapGAppsHook, pythonPackages, gtk3, gnome, gobject-introspection
|
, wrapGAppsHook, pythonPackages, gtk3, gnome, gobject-introspection
|
||||||
, libnotify, libsecret, gst_all_1 }:
|
, libnotify, libsecret, gst_all_1 }:
|
||||||
|
|
||||||
@ -28,6 +28,7 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
(with pythonPackages; [ pygobject3 pylast ]);
|
(with pythonPackages; [ pygobject3 pylast ]);
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Pandora Internet Radio player for GNOME";
|
description = "Pandora Internet Radio player for GNOME";
|
||||||
homepage = "https://pithos.github.io/";
|
homepage = "https://pithos.github.io/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -21,6 +21,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/cth103/plugin-torture";
|
homepage = "https://github.com/cth103/plugin-torture";
|
||||||
description = "A tool to test LADSPA and LV2 plugins";
|
description = "A tool to test LADSPA and LV2 plugins";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, mkDerivation, fetchFromGitHub, qmake, pkg-config, alsa-lib, libjack2, portaudio, libogg, flac, libvorbis, rtmidi, qtsvg }:
|
{ stdenv, lib, mkDerivation, fetchFromGitHub, qmake, pkg-config, alsa-lib, libjack2, portaudio, libogg, flac, libvorbis, rtmidi, qtsvg }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
version = "2.2.0";
|
version = "2.2.0";
|
||||||
@ -40,6 +40,7 @@ mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A soundfont editor for creating musical instruments";
|
description = "A soundfont editor for creating musical instruments";
|
||||||
homepage = "https://www.polyphone-soundfonts.com/";
|
homepage = "https://www.polyphone-soundfonts.com/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/jpcima/quadrafuzz";
|
homepage = "https://github.com/jpcima/quadrafuzz";
|
||||||
description = "Multi-band fuzz distortion plugin";
|
description = "Multi-band fuzz distortion plugin";
|
||||||
maintainers = [ maintainers.magnetophon ];
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
|
|||||||
makeFlags = [ "DESTDIR=$(out)" ];
|
makeFlags = [ "DESTDIR=$(out)" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "http://www.drpetter.se/project_sfxr.html";
|
homepage = "http://www.drpetter.se/project_sfxr.html";
|
||||||
description = "A videogame sound effect generator";
|
description = "A videogame sound effect generator";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "http://openavproductions.com/sorcer/";
|
homepage = "http://openavproductions.com/sorcer/";
|
||||||
description = "A wavetable LV2 plugin synth, targeted at the electronic / dubstep genre";
|
description = "A wavetable LV2 plugin synth, targeted at the electronic / dubstep genre";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
@ -35,6 +35,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Speech denoise lv2 plugin based on RNNoise library";
|
description = "Speech denoise lv2 plugin based on RNNoise library";
|
||||||
homepage = "https://github.com/lucianodato/speech-denoiser";
|
homepage = "https://github.com/lucianodato/speech-denoiser";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
|
@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
installFlags = [ "PREFIX=$(out)" ];
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/jpcima/stone-phaser";
|
homepage = "https://github.com/jpcima/stone-phaser";
|
||||||
description = "A classic analog phaser effect, made with DPF and Faust";
|
description = "A classic analog phaser effect, made with DPF and Faust";
|
||||||
maintainers = [ maintainers.magnetophon ];
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
@ -28,6 +28,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "ReplayGain for wave files";
|
description = "ReplayGain for wave files";
|
||||||
homepage = "https://github.com/MestreLion/wavegain";
|
homepage = "https://github.com/MestreLion/wavegain";
|
||||||
license = lib.licenses.lgpl21;
|
license = lib.licenses.lgpl21;
|
||||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Drum sample player LV2 plugin dedicated to Glen MacArthur's AVLdrums";
|
description = "Drum sample player LV2 plugin dedicated to Glen MacArthur's AVLdrums";
|
||||||
homepage = "https://x42-plugins.com/x42/x42-avldrums";
|
homepage = "https://x42-plugins.com/x42/x42-avldrums";
|
||||||
maintainers = with maintainers; [ magnetophon orivej ];
|
maintainers = with maintainers; [ magnetophon orivej ];
|
||||||
|
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Chris Colins' General User soundfont player LV2 plugin";
|
description = "Chris Colins' General User soundfont player LV2 plugin";
|
||||||
homepage = "https://x42-plugins.com/x42/x42-gmsynth";
|
homepage = "https://x42-plugins.com/x42/x42-gmsynth";
|
||||||
maintainers = with maintainers; [ orivej ];
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
@ -35,6 +35,7 @@ mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "A lite version of Bitcoin using scrypt as a proof-of-work algorithm";
|
description = "A lite version of Bitcoin using scrypt as a proof-of-work algorithm";
|
||||||
longDescription= ''
|
longDescription= ''
|
||||||
Litecoin is a peer-to-peer Internet currency that enables instant payments
|
Litecoin is a peer-to-peer Internet currency that enables instant payments
|
||||||
@ -48,7 +49,6 @@ mkDerivation rec {
|
|||||||
homepage = "https://litecoin.org/";
|
homepage = "https://litecoin.org/";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
maintainers = with maintainers; [ offline ];
|
maintainers = with maintainers; [ offline ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -41,6 +41,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
checkFlags = "--skip configuration::tests::should_resolve_external_nat_hosts";
|
checkFlags = "--skip configuration::tests::should_resolve_external_nat_hosts";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Fast, light, robust Ethereum implementation";
|
description = "Fast, light, robust Ethereum implementation";
|
||||||
homepage = "http://parity.io/ethereum";
|
homepage = "http://parity.io/ethereum";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -43,6 +43,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "Privacy-Focused Marketplace & Decentralized Application Platform";
|
description = "Privacy-Focused Marketplace & Decentralized Application Platform";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
An open source, decentralized privacy platform built for global person to person eCommerce.
|
An open source, decentralized privacy platform built for global person to person eCommerce.
|
||||||
|
@ -64,6 +64,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "An open source crypto-currency focused on fast private transactions";
|
description = "An open source crypto-currency focused on fast private transactions";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
PIVX is an MIT licensed, open source, blockchain-based cryptocurrency with
|
PIVX is an MIT licensed, open source, blockchain-based cryptocurrency with
|
||||||
|
@ -137,6 +137,7 @@ let
|
|||||||
inherit pname version src wmClass jdk product;
|
inherit pname version src wmClass jdk product;
|
||||||
productShort = "MPS";
|
productShort = "MPS";
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://www.jetbrains.com/mps/";
|
homepage = "https://www.jetbrains.com/mps/";
|
||||||
inherit license description platforms;
|
inherit license description platforms;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -170,6 +171,7 @@ let
|
|||||||
inherit pname version src wmClass jdk product;
|
inherit pname version src wmClass jdk product;
|
||||||
productShort = "PyCharm";
|
productShort = "PyCharm";
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://www.jetbrains.com/pycharm/";
|
homepage = "https://www.jetbrains.com/pycharm/";
|
||||||
inherit description license platforms;
|
inherit description license platforms;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -106,6 +106,6 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with maintainers; [ fgaz ];
|
maintainers = with maintainers; [ fgaz ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
# https://github.com/LibreSprite/LibreSprite/issues/308
|
# https://github.com/LibreSprite/LibreSprite/issues/308
|
||||||
broken = stdenv.isDarwin && stdenv.isAarch64;
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Small, flexible terminal-based text editor";
|
description = "Small, flexible terminal-based text editor";
|
||||||
homepage = "https://github.com/adsr/mle";
|
homepage = "https://github.com/adsr/mle";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Simple XML editor based on qt libraries" ;
|
description = "Simple XML editor based on qt libraries" ;
|
||||||
homepage = "https://sourceforge.net/projects/qxmledit";
|
homepage = "https://sourceforge.net/projects/qxmledit";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
|
@ -202,6 +202,7 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
inherit description;
|
inherit description;
|
||||||
homepage = "https://www.rstudio.com/";
|
homepage = "https://www.rstudio.com/";
|
||||||
license = licenses.agpl3Only;
|
license = licenses.agpl3Only;
|
||||||
|
@ -59,6 +59,9 @@ stdenv.mkDerivation {
|
|||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = with maintainers; [ stevebob ];
|
maintainers = with maintainers; [ stevebob ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
# ../nall/traits.hpp:19:14: error: no member named 'is_floating_point_v' in namespace 'std'; did you mean 'is_floating_point'?
|
||||||
|
# using std::is_floating_point_v;
|
||||||
|
broken = (stdenv.isDarwin && stdenv.isx86_64);
|
||||||
mainProgram = "bsnes";
|
mainProgram = "bsnes";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -87,6 +87,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://citra-emu.org";
|
homepage = "https://citra-emu.org";
|
||||||
description = "The ${branch} branch of an open-source emulator for the Ninteno 3DS";
|
description = "The ${branch} branch of an open-source emulator for the Ninteno 3DS";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://gitlab.com/Mr_Goldberg/goldberg_emulator";
|
homepage = "https://gitlab.com/Mr_Goldberg/goldberg_emulator";
|
||||||
changelog = "https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/releases";
|
changelog = "https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/releases";
|
||||||
description = "Program that emulates steam online features";
|
description = "Program that emulates steam online features";
|
||||||
|
@ -146,6 +146,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "Is a multi-purpose emulation framework";
|
description = "Is a multi-purpose emulation framework";
|
||||||
homepage = "https://www.mamedev.org/";
|
homepage = "https://www.mamedev.org/";
|
||||||
license = with licenses; [ bsd3 gpl2Plus ];
|
license = with licenses; [ bsd3 gpl2Plus ];
|
||||||
|
@ -86,6 +86,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Playstation 1 emulator";
|
description = "Playstation 1 emulator";
|
||||||
homepage = "https://github.com/iCatButler/pcsxr";
|
homepage = "https://github.com/iCatButler/pcsxr";
|
||||||
maintainers = with maintainers; [ rardiol ];
|
maintainers = with maintainers; [ rardiol ];
|
||||||
|
@ -81,6 +81,7 @@ mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = ''
|
description = ''
|
||||||
OpenOrienteering Mapper is an orienteering mapmaking program
|
OpenOrienteering Mapper is an orienteering mapmaking program
|
||||||
and provides a free alternative to the existing proprietary solution.
|
and provides a free alternative to the existing proprietary solution.
|
||||||
|
@ -44,6 +44,7 @@ mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A portable DjVu viewer (Qt5) and browser (nsdejavu) plugin";
|
description = "A portable DjVu viewer (Qt5) and browser (nsdejavu) plugin";
|
||||||
homepage = "http://djvu.sourceforge.net/djview4.html";
|
homepage = "http://djvu.sourceforge.net/djview4.html";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -78,6 +78,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Use your tablet as graphic tablet/touch screen on your computer";
|
description = "Use your tablet as graphic tablet/touch screen on your computer";
|
||||||
homepage = "https://github.com/H-M-H/Weylus";
|
homepage = "https://github.com/H-M-H/Weylus";
|
||||||
license = with licenses; [ agpl3Only ];
|
license = with licenses; [ agpl3Only ];
|
||||||
|
@ -159,6 +159,8 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
# darwin.patch doesn't apply anymore, needs update
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "3D Creation/Animation/Publishing System";
|
description = "3D Creation/Animation/Publishing System";
|
||||||
homepage = "https://www.blender.org";
|
homepage = "https://www.blender.org";
|
||||||
# They comment two licenses: GPLv2 and Blender License, but they
|
# They comment two licenses: GPLv2 and Blender License, but they
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
|
{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
|
||||||
qttools, fribidi, libunibreak }:
|
qttools, fribidi, libunibreak }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
@ -17,6 +17,7 @@ mkDerivation rec {
|
|||||||
buildInputs = [ qttools fribidi libunibreak ];
|
buildInputs = [ qttools fribidi libunibreak ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/buggins/coolreader";
|
homepage = "https://github.com/buggins/coolreader";
|
||||||
description = "Cross platform open source e-book reader";
|
description = "Cross platform open source e-book reader";
|
||||||
license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
|
license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
|
||||||
|
@ -57,6 +57,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/Cubitect/cubiomes-viewer";
|
homepage = "https://github.com/Cubitect/cubiomes-viewer";
|
||||||
description = "A graphical Minecraft seed finder and map viewer";
|
description = "A graphical Minecraft seed finder and map viewer";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{lib, python3Packages, gettext, qt5, fetchFromGitHub}:
|
{ stdenv, lib, python3Packages, gettext, qt5, fetchFromGitHub}:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "dupeguru";
|
pname = "dupeguru";
|
||||||
@ -57,6 +57,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "GUI tool to find duplicate files in a system";
|
description = "GUI tool to find duplicate files in a system";
|
||||||
homepage = "https://github.com/arsenetar/dupeguru";
|
homepage = "https://github.com/arsenetar/dupeguru";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
@ -99,6 +99,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://tu-dresden.de/zih/forschung/projekte/firestarter";
|
homepage = "https://tu-dresden.de/zih/forschung/projekte/firestarter";
|
||||||
description = "Processor Stress Test Utility";
|
description = "Processor Stress Test Utility";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -56,6 +56,7 @@ stdenv.mkDerivation rec {
|
|||||||
+ lib.optionalString stdenv.isAarch64 "rm -v testo.d/arc-project.test";
|
+ lib.optionalString stdenv.isAarch64 "rm -v testo.d/arc-project.test";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Convert, upload and download data from GPS and Map programs";
|
description = "Convert, upload and download data from GPS and Map programs";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GPSBabel converts waypoints, tracks, and routes between popular
|
GPSBabel converts waypoints, tracks, and routes between popular
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "hugo";
|
pname = "hugo";
|
||||||
@ -33,6 +33,7 @@ buildGoModule rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A fast and modern static website engine";
|
description = "A fast and modern static website engine";
|
||||||
homepage = "https://gohugo.io";
|
homepage = "https://gohugo.io";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ];
|
installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://csl.name/jp2a/";
|
homepage = "https://csl.name/jp2a/";
|
||||||
description = "A small utility that converts JPG images to ASCII";
|
description = "A small utility that converts JPG images to ASCII";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
|
@ -57,6 +57,7 @@ with python3.pkgs; buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "http://lostpackets.de/khal/";
|
homepage = "http://lostpackets.de/khal/";
|
||||||
description = "CLI calendar application";
|
description = "CLI calendar application";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A framework for controlling entertainment lighting equipment";
|
description = "A framework for controlling entertainment lighting equipment";
|
||||||
homepage = "https://www.openlighting.org/ola/";
|
homepage = "https://www.openlighting.org/ola/";
|
||||||
maintainers = with maintainers; [ globin ];
|
maintainers = with maintainers; [ globin ];
|
||||||
|
@ -75,12 +75,13 @@ mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
# darwin: "invalid application of 'sizeof' to a function type"
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
homepage = "https://organicmaps.app/";
|
homepage = "https://organicmaps.app/";
|
||||||
description = "Detailed Offline Maps for Travellers, Tourists, Hikers and Cyclists";
|
description = "Detailed Offline Maps for Travellers, Tourists, Hikers and Cyclists";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ fgaz ];
|
maintainers = with maintainers; [ fgaz ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
mainProgram = "OMaps";
|
mainProgram = "OMaps";
|
||||||
broken = stdenv.isDarwin; # "invalid application of 'sizeof' to a function type"
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
version = "3.1.1";
|
version = "3.1.1";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "OpenSteno Plover stenography software";
|
description = "OpenSteno Plover stenography software";
|
||||||
maintainers = with maintainers; [ twey kovirobi ];
|
maintainers = with maintainers; [ twey kovirobi ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
@ -31,6 +32,7 @@
|
|||||||
version = "4.0.0.dev10";
|
version = "4.0.0.dev10";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "OpenSteno Plover stenography software";
|
description = "OpenSteno Plover stenography software";
|
||||||
maintainers = with maintainers; [ twey kovirobi ];
|
maintainers = with maintainers; [ twey kovirobi ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ mkDerivation, lib, fetchFromGitHub, fetchFromGitiles, pkg-config, libssh2
|
{ stdenv, mkDerivation, lib, fetchFromGitHub, fetchFromGitiles, pkg-config, libssh2
|
||||||
, qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols2
|
, qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols2
|
||||||
, qtsvg, qttools, qtquick1, qtcharts
|
, qtsvg, qttools, qtquick1, qtcharts
|
||||||
, qmake
|
, qmake
|
||||||
@ -75,6 +75,7 @@ EOF
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Cross-platform open source Redis DB management tool";
|
description = "Cross-platform open source Redis DB management tool";
|
||||||
homepage = "https://redisdesktop.com/";
|
homepage = "https://redisdesktop.com/";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, python3
|
, python3
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
}:
|
}:
|
||||||
@ -40,6 +41,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Yet another simple static gallery generator";
|
description = "Yet another simple static gallery generator";
|
||||||
homepage = "http://sigal.saimon.org/";
|
homepage = "http://sigal.saimon.org/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -18,6 +18,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/seenaburns/stag";
|
homepage = "https://github.com/seenaburns/stag";
|
||||||
description = "Terminal streaming bar graph passed through stdin";
|
description = "Terminal streaming bar graph passed through stdin";
|
||||||
license = licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
|
@ -20,11 +20,11 @@ stdenv.mkDerivation rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin || stdenv.isAarch64;
|
||||||
description = "Build vector tilesets from large collections of GeoJSON features";
|
description = "Build vector tilesets from large collections of GeoJSON features";
|
||||||
homepage = "https://github.com/mapbox/tippecanoe";
|
homepage = "https://github.com/mapbox/tippecanoe";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ sikmir ];
|
maintainers = with maintainers; [ sikmir ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
broken = stdenv.hostPlatform.isAarch64;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
|
|||||||
doCheck = !stdenv.isDarwin;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "An md5sum-alike program that works with Tiger/THEX hashes";
|
description = "An md5sum-alike program that works with Tiger/THEX hashes";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
tthsum generates or checks TTH checksums (root of the THEX hash
|
tthsum generates or checks TTH checksums (root of the THEX hash
|
||||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Perform a bus reset on a USB device using its vendor and product ID";
|
description = "Perform a bus reset on a USB device using its vendor and product ID";
|
||||||
homepage = "https://github.com/ralight/usb-reset";
|
homepage = "https://github.com/ralight/usb-reset";
|
||||||
changelog = "https://github.com/ralight/usb-reset/blob/master/ChangeLog.txt";
|
changelog = "https://github.com/ralight/usb-reset/blob/master/ChangeLog.txt";
|
||||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A program to help prevent Repetitive Strain Injury";
|
description = "A program to help prevent Repetitive Strain Injury";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Workrave is a program that assists in the recovery and prevention of
|
Workrave is a program that assists in the recovery and prevention of
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config
|
{ stdenv, mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config
|
||||||
, libtool, openssl, qtbase, qttools, sphinx }:
|
, libtool, openssl, qtbase, qttools, sphinx }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
@ -22,6 +22,7 @@ mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
|
description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
|
||||||
homepage = "https://hohnstaedt.de/xca/";
|
homepage = "https://hohnstaedt.de/xca/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Monero (XMR) CPU miner";
|
description = "Monero (XMR) CPU miner";
|
||||||
homepage = "https://github.com/xmrig/xmrig";
|
homepage = "https://github.com/xmrig/xmrig";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchFromGitHub, lib, xmrig }:
|
{ stdenv, fetchFromGitHub, lib, xmrig }:
|
||||||
|
|
||||||
xmrig.overrideAttrs (oldAttrs: rec {
|
xmrig.overrideAttrs (oldAttrs: rec {
|
||||||
pname = "xmrig-mo";
|
pname = "xmrig-mo";
|
||||||
@ -12,6 +12,7 @@ xmrig.overrideAttrs (oldAttrs: rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A fork of the XMRig CPU miner with support for algorithm switching";
|
description = "A fork of the XMRig CPU miner with support for algorithm switching";
|
||||||
homepage = "https://github.com/MoneroOcean/xmrig";
|
homepage = "https://github.com/MoneroOcean/xmrig";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
@ -29,6 +29,7 @@ buildGoModule rec {
|
|||||||
doCheck = !stdenv.isDarwin;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)";
|
description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)";
|
||||||
homepage = "https://www.cloudflare.com/products/tunnel";
|
homepage = "https://www.cloudflare.com/products/tunnel";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "hubble";
|
pname = "hubble";
|
||||||
@ -14,6 +14,7 @@ buildGoModule rec {
|
|||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "Network, Service & Security Observability for Kubernetes using eBPF";
|
description = "Network, Service & Security Observability for Kubernetes using eBPF";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = "https://github.com/cilium/hubble/";
|
homepage = "https://github.com/cilium/hubble/";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
{ stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "jx";
|
pname = "jx";
|
||||||
@ -34,6 +34,7 @@ buildGoModule rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Command line tool for installing and using Jenkins X";
|
description = "Command line tool for installing and using Jenkins X";
|
||||||
homepage = "https://jenkins-x.io";
|
homepage = "https://jenkins-x.io";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -25,6 +25,7 @@ nodePackages.package.override {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Version controlled multi-cluster deployment manager for kubernetes";
|
description = "Version controlled multi-cluster deployment manager for kubernetes";
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "BitTorrent client written in C++";
|
description = "BitTorrent client written in C++";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CTorrent, a BitTorrent client implemented in C++, with bugfixes and
|
CTorrent, a BitTorrent client implemented in C++, with bugfixes and
|
||||||
|
@ -52,6 +52,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://www.shrew.net/software";
|
homepage = "https://www.shrew.net/software";
|
||||||
description = "IPsec Client for FreeBSD, NetBSD and many Linux based operating systems";
|
description = "IPsec Client for FreeBSD, NetBSD and many Linux based operating systems";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
@ -22,6 +22,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
PROTOC = "${protobuf}/bin/protoc";
|
PROTOC = "${protobuf}/bin/protoc";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Signal Messenger client for terminal";
|
description = "Signal Messenger client for terminal";
|
||||||
homepage = "https://github.com/boxdot/gurk-rs";
|
homepage = "https://github.com/boxdot/gurk-rs";
|
||||||
license = licenses.agpl3Only;
|
license = licenses.agpl3Only;
|
||||||
|
@ -69,6 +69,7 @@ mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Qt Tox client";
|
description = "Qt Tox client";
|
||||||
homepage = "https://tox.chat";
|
homepage = "https://tox.chat";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -217,6 +217,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Kotatogram – experimental Telegram Desktop fork";
|
description = "Kotatogram – experimental Telegram Desktop fork";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Unofficial desktop client for the Telegram messenger, based on Telegram Desktop.
|
Unofficial desktop client for the Telegram messenger, based on Telegram Desktop.
|
||||||
|
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "An IRC channel management bot written purely in C/C++";
|
description = "An IRC channel management bot written purely in C/C++";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Wraith is an IRC channel management bot written purely in C/C++. It has
|
Wraith is an IRC channel management bot written purely in C/C++. It has
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchgit
|
, fetchgit
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkg-config
|
, pkg-config
|
||||||
@ -48,6 +49,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults";
|
description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults";
|
||||||
homepage = "https://meli.delivery";
|
homepage = "https://meli.delivery";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN";
|
description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Client for many p2p networks, with multiple frontends";
|
description = "Client for many p2p networks, with multiple frontends";
|
||||||
homepage = "http://mldonkey.sourceforge.net/";
|
homepage = "http://mldonkey.sourceforge.net/";
|
||||||
license = lib.licenses.gpl2Only;
|
license = lib.licenses.gpl2Only;
|
||||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
|
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
|
||||||
homepage = "https://pjsip.org/";
|
homepage = "https://pjsip.org/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf
|
{ stdenv, lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf
|
||||||
, gobject-introspection, gtk3, wrapGAppsHook }:
|
, gobject-introspection, gtk3, wrapGAppsHook }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
@ -35,6 +35,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A graphical client for the SoulSeek peer-to-peer system";
|
description = "A graphical client for the SoulSeek peer-to-peer system";
|
||||||
homepage = "https://www.nicotine-plus.org";
|
homepage = "https://www.nicotine-plus.org";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
@ -14,6 +14,7 @@ let
|
|||||||
};
|
};
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Anonymous, taxable payment system.";
|
description = "Anonymous, taxable payment system.";
|
||||||
homepage = "https://taler.net/";
|
homepage = "https://taler.net/";
|
||||||
license = licenses.agpl3Plus;
|
license = licenses.agpl3Plus;
|
||||||
|
@ -63,6 +63,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "Open source bibliography reference manager";
|
description = "Open source bibliography reference manager";
|
||||||
homepage = "https://www.jabref.org";
|
homepage = "https://www.jabref.org";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -50,6 +50,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
homepage = "https://ledger-cli.org/";
|
homepage = "https://ledger-cli.org/";
|
||||||
description = "A double-entry accounting system with a command-line reporting interface";
|
description = "A double-entry accounting system with a command-line reporting interface";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, mkDerivation
|
, mkDerivation
|
||||||
, fetchFromGitLab
|
, fetchFromGitLab
|
||||||
, wafHook
|
, wafHook
|
||||||
@ -81,6 +82,7 @@ mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A mind-mapping application for KDE";
|
description = "A mind-mapping application for KDE";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = "https://waf.io/semantik.html";
|
homepage = "https://waf.io/semantik.html";
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, python3
|
, python3
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
, installShellFiles
|
, installShellFiles
|
||||||
@ -75,6 +76,7 @@ buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/pimutils/todoman";
|
homepage = "https://github.com/pimutils/todoman";
|
||||||
description = "Standards-based task manager based on iCalendar";
|
description = "Standards-based task manager based on iCalendar";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/jketterl/csdr";
|
homepage = "https://github.com/jketterl/csdr";
|
||||||
description = "A simple DSP library and command-line tool for Software Defined Radio";
|
description = "A simple DSP library and command-line tool for Software Defined Radio";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
@ -48,6 +48,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A simple Mode S decoder for RTLSDR devices";
|
description = "A simple Mode S decoder for RTLSDR devices";
|
||||||
homepage = "https://github.com/flightaware/dump1090";
|
homepage = "https://github.com/flightaware/dump1090";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, libpulseaudio }:
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, libpulseaudio }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "flex-ndax";
|
pname = "flex-ndax";
|
||||||
@ -16,6 +16,7 @@ buildGoModule rec {
|
|||||||
vendorSha256 = "sha256-u/5LiVo/ZOefprEKr/L1+3+OfYb0a4wq+CWoUjYNvzg=";
|
vendorSha256 = "sha256-u/5LiVo/ZOefprEKr/L1+3+OfYb0a4wq+CWoUjYNvzg=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/kc2g-flex-tools/nDAX";
|
homepage = "https://github.com/kc2g-flex-tools/nDAX";
|
||||||
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
|
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -112,6 +112,7 @@ rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Software Defined Radio (SDR) software";
|
description = "Software Defined Radio (SDR) software";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GNU Radio is a free & open-source software development toolkit that
|
GNU Radio is a free & open-source software development toolkit that
|
||||||
|
@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description =
|
description =
|
||||||
"SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for the electromagnetic spectrum between 20 MHz and 20 GHz";
|
"SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for the electromagnetic spectrum between 20 MHz and 20 GHz";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
|
@ -143,6 +143,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||||
description = "USRP Hardware Driver (for Software Defined Radio)";
|
description = "USRP Hardware Driver (for Software Defined Radio)";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
The USRP Hardware Driver (UHD) software is the hardware driver for all
|
The USRP Hardware Driver (UHD) software is the hardware driver for all
|
||||||
|
@ -50,6 +50,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Radioastronomy data analysis software";
|
description = "Radioastronomy data analysis software";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GILDAS is a collection of state-of-the-art software
|
GILDAS is a collection of state-of-the-art software
|
||||||
|
@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/gak/gravit";
|
homepage = "https://github.com/gak/gravit";
|
||||||
description = "Beautiful OpenGL-based gravity simulator";
|
description = "Beautiful OpenGL-based gravity simulator";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
|
@ -29,6 +29,7 @@ mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Free open-source planetarium";
|
description = "Free open-source planetarium";
|
||||||
homepage = "http://stellarium.org/";
|
homepage = "http://stellarium.org/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Computational Morphometry Toolkit ";
|
description = "Computational Morphometry Toolkit ";
|
||||||
longDescription = ''A software toolkit for computational morphometry of
|
longDescription = ''A software toolkit for computational morphometry of
|
||||||
biomedical images, CMTK comprises a set of command line tools and a
|
biomedical images, CMTK comprises a set of command line tools and a
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, gccStdenv, fetchurl, zlib, mpi }:
|
{ stdenv, lib, gccStdenv, fetchurl, zlib, mpi }:
|
||||||
|
|
||||||
gccStdenv.mkDerivation rec {
|
gccStdenv.mkDerivation rec {
|
||||||
version = "3.7.2";
|
version = "3.7.2";
|
||||||
@ -15,6 +15,7 @@ gccStdenv.mkDerivation rec {
|
|||||||
preInstall = "mkdir -p $out/man/man1";
|
preInstall = "mkdir -p $out/man/man1";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Estimates population size, migration, population splitting parameters using genetic/genomic data";
|
description = "Estimates population size, migration, population splitting parameters using genetic/genomic data";
|
||||||
homepage = "https://peterbeerli.com/migrate-html5/index.html";
|
homepage = "https://peterbeerli.com/migrate-html5/index.html";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -86,6 +86,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
homepage = "https://github.com/MRtrix3/mrtrix3";
|
homepage = "https://github.com/MRtrix3/mrtrix3";
|
||||||
description = "Suite of tools for diffusion imaging";
|
description = "Suite of tools for diffusion imaging";
|
||||||
maintainers = with maintainers; [ bcdarwin ];
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A multiple sequence alignment method with reduced time and space complexity";
|
description = "A multiple sequence alignment method with reduced time and space complexity";
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
homepage = "https://www.drive5.com/muscle/";
|
homepage = "https://www.drive5.com/muscle/";
|
||||||
|
@ -71,6 +71,7 @@ stdenv.mkDerivation rec {
|
|||||||
propagatedBuildInputs = [ readline ncurses which libtool ];
|
propagatedBuildInputs = [ readline ncurses which libtool ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Simulation environment for empirically-based simulations of neurons and networks of neurons";
|
description = "Simulation environment for empirically-based simulations of neurons and networks of neurons";
|
||||||
|
|
||||||
longDescription = "NEURON is a simulation environment for developing and exercising models of
|
longDescription = "NEURON is a simulation environment for developing and exercising models of
|
||||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||||
description = "A comprehensive update to the PLINK association analysis toolset";
|
description = "A comprehensive update to the PLINK association analysis toolset";
|
||||||
homepage = "https://www.cog-genomics.org/plink2";
|
homepage = "https://www.cog-genomics.org/plink2";
|
||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3;
|
||||||
|
@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "High-performance read alignment, quantification and mutation discovery";
|
description = "High-performance read alignment, quantification and mutation discovery";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ jbedo ];
|
maintainers = with maintainers; [ jbedo ];
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user