Merge master into staging-next
This commit is contained in:
commit
67bbf2c845
@ -203,10 +203,6 @@ runCommand
|
|||||||
--subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \
|
--subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \
|
||||||
--subst-var-by prog "$emacs/Applications/Emacs.app/Contents/MacOS/Emacs"
|
--subst-var-by prog "$emacs/Applications/Emacs.app/Contents/MacOS/Emacs"
|
||||||
chmod +x $out/Applications/Emacs.app/Contents/MacOS/Emacs
|
chmod +x $out/Applications/Emacs.app/Contents/MacOS/Emacs
|
||||||
|
|
||||||
makeWrapper $emacs/Applications/Emacs.app/Contents/MacOS/Emacs $out/Applications/Emacs.app/Contents/MacOS/Emacs \
|
|
||||||
--suffix EMACSLOADPATH ":" "$deps/share/emacs/site-lisp:" \
|
|
||||||
--suffix EMACSNATIVELOADPATH ":" "$deps/share/emacs/native-lisp:"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p $out/share
|
mkdir -p $out/share
|
||||||
|
@ -44,7 +44,6 @@
|
|||||||
, libsecret
|
, libsecret
|
||||||
, libcap_ng
|
, libcap_ng
|
||||||
, numactl
|
, numactl
|
||||||
, xen
|
|
||||||
, libapparmor
|
, libapparmor
|
||||||
, json-glib
|
, json-glib
|
||||||
, webkitgtk
|
, webkitgtk
|
||||||
@ -117,7 +116,6 @@ stdenv.mkDerivation rec {
|
|||||||
tracker-miners
|
tracker-miners
|
||||||
vte
|
vte
|
||||||
webkitgtk
|
webkitgtk
|
||||||
xen
|
|
||||||
yajl
|
yajl
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -76,8 +76,7 @@ stdenv.mkDerivation (rec {
|
|||||||
outputs = [ "out" "info" ];
|
outputs = [ "out" "info" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ perl xz.bin ]
|
nativeBuildInputs = [ perl xz.bin ]
|
||||||
++ optionals stdenv.hostPlatform.isCygwin [ autoreconfHook texinfo ] # due to patch
|
++ optionals stdenv.hostPlatform.isCygwin [ autoreconfHook texinfo ]; # due to patch
|
||||||
++ optionals stdenv.hostPlatform.isMusl [ autoreconfHook bison ]; # due to patch
|
|
||||||
configureFlags = [ "--with-packager=https://NixOS.org" ]
|
configureFlags = [ "--with-packager=https://NixOS.org" ]
|
||||||
++ optional (singleBinary != false)
|
++ optional (singleBinary != false)
|
||||||
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
, zlib
|
, zlib
|
||||||
, szip ? null
|
, szip ? null
|
||||||
}:
|
}:
|
||||||
|
let uselibtirpc = stdenv.isLinux;
|
||||||
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hdf";
|
pname = "hdf";
|
||||||
version = "4.2.15";
|
version = "4.2.15";
|
||||||
@ -49,12 +50,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libjpeg
|
libjpeg
|
||||||
libtirpc
|
|
||||||
szip
|
szip
|
||||||
zlib
|
zlib
|
||||||
|
] ++ stdenv.lib.optionals uselibtirpc [
|
||||||
|
libtirpc
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = stdenv.lib.optionalString uselibtirpc ''
|
||||||
# Make tirpc discovery work with CMAKE_PREFIX_PATH
|
# Make tirpc discovery work with CMAKE_PREFIX_PATH
|
||||||
substituteInPlace config/cmake/FindXDR.cmake \
|
substituteInPlace config/cmake/FindXDR.cmake \
|
||||||
--replace 'find_path(XDR_INCLUDE_DIR NAMES rpc/types.h PATHS "/usr/include" "/usr/include/tirpc")' \
|
--replace 'find_path(XDR_INCLUDE_DIR NAMES rpc/types.h PATHS "/usr/include" "/usr/include/tirpc")' \
|
||||||
|
@ -4967,7 +4967,9 @@ in
|
|||||||
|
|
||||||
ipfs = callPackage ../applications/networking/ipfs { };
|
ipfs = callPackage ../applications/networking/ipfs { };
|
||||||
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
||||||
ipfs-cluster = callPackage ../applications/networking/ipfs-cluster { };
|
ipfs-cluster = callPackage ../applications/networking/ipfs-cluster {
|
||||||
|
buildGoModule = buildGo114Module;
|
||||||
|
};
|
||||||
|
|
||||||
ipget = callPackage ../applications/networking/ipget { };
|
ipget = callPackage ../applications/networking/ipget { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user