Merge master into staging-next
This commit is contained in:
@@ -26,6 +26,5 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/google/evcxr";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ protoben ma27 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,7 +25,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/candid82/joker";
|
||||
description = "A small Clojure interpreter and linter written in Go";
|
||||
license = licenses.epl10;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ andrestylianos ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
, readline
|
||||
, sqlite
|
||||
, tcl ? null, tk ? null, tix ? null, libX11 ? null, xorgproto ? null, x11Support ? false
|
||||
, bluez ? null, bluezSupport ? false
|
||||
, zlib
|
||||
, self
|
||||
, configd
|
||||
@@ -45,6 +46,9 @@ assert x11Support -> tcl != null
|
||||
&& tk != null
|
||||
&& xorgproto != null
|
||||
&& libX11 != null;
|
||||
|
||||
assert bluezSupport -> bluez != null;
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let
|
||||
@@ -73,6 +77,7 @@ let
|
||||
buildInputs = filter (p: p != null) ([
|
||||
zlib bzip2 expat lzma libffi gdbm sqlite readline ncurses openssl ]
|
||||
++ optionals x11Support [ tcl tk libX11 xorgproto ]
|
||||
++ optionals (bluezSupport && stdenv.isLinux) [ bluez ]
|
||||
++ optionals stdenv.isDarwin [ configd ]);
|
||||
|
||||
hasDistutilsCxxPatch = !(stdenv.cc.isGNU or false);
|
||||
|
||||
@@ -35,6 +35,5 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://wasmer.io/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user