Merge branch 'master' into staging-next

zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
This commit is contained in:
Jan Tojnar
2021-01-08 02:07:34 +01:00
64 changed files with 1092 additions and 930 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml }:
{ stdenv, fetchurl, ocaml, perl }:
stdenv.mkDerivation {
pname = "bibtex2html";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
};
buildInputs = [ ocaml ];
buildInputs = [ ocaml perl ];
meta = with stdenv.lib; {
description = "A collection of tools for translating from BibTeX to HTML";
+27
View File
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, rustPlatform, IOKit }:
rustPlatform.buildRustPackage rec {
pname = "tab-rs";
version = "0.5.5";
src = fetchFromGitHub {
owner = "austinjones";
repo = pname;
rev = "v${version}";
sha256 = "06nip7g5y7jslqj8anvn2z7w1c8yr0gl32bpnzv26xschan4gc2h";
};
cargoSha256 = "1clpl9fi07lms0din8f9m4y6br5jg8k5xsklsqmvgdwf83wyn321";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
# many tests are failing
doCheck = false;
meta = with stdenv.lib; {
description = "Intuitive, config-driven terminal multiplexer designed for software & systems engineers";
homepage = "https://github.com/austinjones/tab-rs";
license = licenses.mit;
maintainers = with maintainers; [ bbigras ];
};
}