Merge master into staging-next
This commit is contained in:
commit
bfcc20a149
|
@ -45,13 +45,13 @@ let
|
||||||
];
|
];
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "pulseeffects";
|
pname = "pulseeffects";
|
||||||
version = "4.8.3";
|
version = "4.8.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "wwmm";
|
owner = "wwmm";
|
||||||
repo = "pulseeffects";
|
repo = "pulseeffects";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0k5p5y3im7xnf0ikaghh56nfhirkdwf95c8fr17wasgdpw2m86i2";
|
sha256 = "19sndxvszafbd1l2033g2irpx2jrwi5bpbx8r35047wi0z7djiag";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
|
@ -19,10 +19,14 @@ with stdenv.lib; stdenv.mkDerivation rec {
|
||||||
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./glibc-struct-mallinfo.patch;
|
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./glibc-struct-mallinfo.patch;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/lib
|
mkdir -p $out/lib
|
||||||
cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/
|
cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/
|
||||||
mv include $out/
|
mv include $out/
|
||||||
rm $out/include/index.html
|
rm $out/include/index.html
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
|
@ -5,13 +5,15 @@
|
||||||
, pkgsStatic
|
, pkgsStatic
|
||||||
, openssl
|
, openssl
|
||||||
, invoke
|
, invoke
|
||||||
, pytest
|
|
||||||
, tls-parser
|
, tls-parser
|
||||||
, cacert
|
, cacert
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
zlibStatic = pkgsStatic.zlib;
|
zlibStatic = pkgsStatic.zlib.override {
|
||||||
|
splitStaticOutput = false;
|
||||||
|
};
|
||||||
nasslOpensslArgs = {
|
nasslOpensslArgs = {
|
||||||
static = true;
|
static = true;
|
||||||
enableSSL2 = true;
|
enableSSL2 = true;
|
||||||
|
@ -34,17 +36,16 @@ let
|
||||||
opensslStatic = (openssl.override nasslOpensslArgs).overrideAttrs (
|
opensslStatic = (openssl.override nasslOpensslArgs).overrideAttrs (
|
||||||
oldAttrs: rec {
|
oldAttrs: rec {
|
||||||
name = "openssl-${version}";
|
name = "openssl-${version}";
|
||||||
version = "1.1.1";
|
version = "1.1.1h";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.openssl.org/source/${name}.tar.gz";
|
url = "https://www.openssl.org/source/${name}.tar.gz";
|
||||||
sha256 = "0gbab2fjgms1kx5xjvqx8bxhr98k4r8l2fa8vw7kvh491xd8fdi8";
|
sha256 = "1ncmcnh5bmxkwrvm0m1q4kdcjjfpwvlyjspjhibkxc6p9dvsi72w";
|
||||||
};
|
};
|
||||||
configureFlags = oldAttrs.configureFlags ++ nasslOpensslFlagsCommon ++ [
|
configureFlags = oldAttrs.configureFlags ++ nasslOpensslFlagsCommon ++ [
|
||||||
"enable-weak-ssl-ciphers"
|
"enable-weak-ssl-ciphers"
|
||||||
"enable-tls1_3"
|
"enable-tls1_3"
|
||||||
"no-async"
|
"no-async"
|
||||||
];
|
];
|
||||||
patches = [ ./nix-ssl-cert-file.patch ];
|
|
||||||
buildInputs = oldAttrs.buildInputs ++ [ zlibStatic cacert ];
|
buildInputs = oldAttrs.buildInputs ++ [ zlibStatic cacert ];
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -66,32 +67,36 @@ let
|
||||||
in
|
in
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nassl";
|
pname = "nassl";
|
||||||
version = "3.0.0";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nabla-c0d3";
|
owner = "nabla-c0d3";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1dhgkpldadq9hg5isb6mrab7z80sy5bvzad2fb54pihnknfwhp8z";
|
sha256 = "1x1v0fpb6gcc2r0k2rsy0mc3v25s3qbva78apvi46n08c2l309ci";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = let
|
||||||
mkdir -p deps/openssl-OpenSSL_1_0_2e/
|
legacyOpenSSLVersion = lib.replaceStrings ["."] ["_"] opensslLegacyStatic.version;
|
||||||
|
modernOpenSSLVersion = lib.replaceStrings ["."] ["_"] opensslStatic.version;
|
||||||
|
zlibVersion = zlibStatic.version;
|
||||||
|
in ''
|
||||||
|
mkdir -p deps/openssl-OpenSSL_${legacyOpenSSLVersion}/
|
||||||
cp ${opensslLegacyStatic.out}/lib/libssl.a \
|
cp ${opensslLegacyStatic.out}/lib/libssl.a \
|
||||||
${opensslLegacyStatic.out}/lib/libcrypto.a \
|
${opensslLegacyStatic.out}/lib/libcrypto.a \
|
||||||
deps/openssl-OpenSSL_1_0_2e/
|
deps/openssl-OpenSSL_${legacyOpenSSLVersion}/
|
||||||
ln -s ${opensslLegacyStatic.out.dev}/include deps/openssl-OpenSSL_1_0_2e/include
|
ln -s ${opensslLegacyStatic.out.dev}/include deps/openssl-OpenSSL_${legacyOpenSSLVersion}/include
|
||||||
ln -s ${opensslLegacyStatic.bin}/bin deps/openssl-OpenSSL_1_0_2e/apps
|
ln -s ${opensslLegacyStatic.bin}/bin deps/openssl-OpenSSL_${legacyOpenSSLVersion}/apps
|
||||||
|
|
||||||
mkdir -p deps/openssl-OpenSSL_1_1_1/
|
mkdir -p deps/openssl-OpenSSL_${modernOpenSSLVersion}/
|
||||||
cp ${opensslStatic.out}/lib/libssl.a \
|
cp ${opensslStatic.out}/lib/libssl.a \
|
||||||
${opensslStatic.out}/lib/libcrypto.a \
|
${opensslStatic.out}/lib/libcrypto.a \
|
||||||
deps/openssl-OpenSSL_1_1_1/
|
deps/openssl-OpenSSL_${modernOpenSSLVersion}/
|
||||||
ln -s ${opensslStatic.out.dev}/include deps/openssl-OpenSSL_1_1_1/include
|
ln -s ${opensslStatic.out.dev}/include deps/openssl-OpenSSL_${modernOpenSSLVersion}/include
|
||||||
ln -s ${opensslStatic.bin}/bin deps/openssl-OpenSSL_1_1_1/apps
|
ln -s ${opensslStatic.bin}/bin deps/openssl-OpenSSL_${modernOpenSSLVersion}/apps
|
||||||
|
|
||||||
mkdir -p deps/zlib-1.2.11/
|
mkdir -p deps/zlib-${zlibVersion}/
|
||||||
cp ${zlibStatic.out}/lib/libz.a deps/zlib-1.2.11/
|
cp ${zlibStatic.out}/lib/libz.a deps/zlib-${zlibVersion}/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ tls-parser ];
|
propagatedBuildInputs = [ tls-parser ];
|
||||||
|
@ -103,7 +108,7 @@ buildPythonPackage rec {
|
||||||
invoke package.wheel
|
invoke package.wheel
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# Skip online tests
|
# Skip online tests
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
diff -ru -x '*~' openssl-1.0.2j-orig/crypto/x509/by_file.c openssl-1.0.2j/crypto/x509/by_file.c
|
|
||||||
--- openssl-1.0.2j-orig/crypto/x509/by_file.c 2016-09-26 11:49:07.000000000 +0200
|
|
||||||
+++ openssl-1.0.2j/crypto/x509/by_file.c 2016-10-13 16:54:31.400288302 +0200
|
|
||||||
@@ -97,7 +97,9 @@
|
|
||||||
switch (cmd) {
|
|
||||||
case X509_L_FILE_LOAD:
|
|
||||||
if (argl == X509_FILETYPE_DEFAULT) {
|
|
||||||
- file = getenv(X509_get_default_cert_file_env());
|
|
||||||
+ file = getenv("NIX_SSL_CERT_FILE");
|
|
||||||
+ if (!file)
|
|
||||||
+ file = getenv(X509_get_default_cert_file_env());
|
|
||||||
if (file)
|
|
||||||
ok = (X509_load_cert_crl_file(ctx, file,
|
|
||||||
X509_FILETYPE_PEM) != 0);
|
|
|
@ -1,30 +1,30 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytest
|
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, nassl
|
, nassl
|
||||||
, cryptography
|
, cryptography
|
||||||
, typing-extensions
|
, typing-extensions
|
||||||
, faker
|
, faker
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "sslyze";
|
pname = "sslyze";
|
||||||
version = "3.0.8";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nabla-c0d3";
|
owner = "nabla-c0d3";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "06mwzxw6xaqin2gwzcqb9r7qhbyx3k7zcxygxywi2bpxyjv9lq32";
|
sha256 = "02p0lgpkfq88dys0dqw0z8bpg9g8pds2lvs9awd9f2w5cb1pwr83";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace "cryptography>=2.6,<=2.9" "cryptography"
|
--replace "cryptography>=2.6,<3.3" "cryptography>=2.6,<4.0"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# Most of the tests are online; hence, applicable tests are listed
|
# Most of the tests are online; hence, applicable tests are listed
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, requests
|
||||||
|
, urllib3
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "unifiled";
|
||||||
|
version = "1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "florisvdk";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1nmqxxhwa0isxdb889nhbp7w4axj1mcrwd3pr9d8nhpw4yj9h3vq";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
urllib3
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project doesn't have any tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "unifiled" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module for Ubiquiti Unifi LED controller";
|
||||||
|
homepage = "https://github.com/florisvdk/unifiled";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildGoModule
|
, buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, gpgme
|
, gpgme
|
||||||
|
@ -13,13 +14,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "skopeo";
|
pname = "skopeo";
|
||||||
version = "1.2.0";
|
version = "1.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "containers";
|
owner = "containers";
|
||||||
repo = "skopeo";
|
repo = "skopeo";
|
||||||
sha256 = "1v7k3ki10i6082r7zswblyirx6zck674y6bw3plssw4p1l2611rd";
|
sha256 = "1y9pmijazbgxzriymrm7zrifmkd1x1wad9b3zjcj7zwr6c999dhg";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
@ -31,7 +32,7 @@ buildGoModule rec {
|
||||||
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [ gpgme ]
|
buildInputs = [ gpgme ]
|
||||||
++ stdenv.lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
|
++ lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
|
@ -42,9 +43,9 @@ buildGoModule rec {
|
||||||
install -Dm755 bin/skopeo -t $out/bin
|
install -Dm755 bin/skopeo -t $out/bin
|
||||||
installManPage docs/*.[1-9]
|
installManPage docs/*.[1-9]
|
||||||
installShellCompletion --bash completions/bash/skopeo
|
installShellCompletion --bash completions/bash/skopeo
|
||||||
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
'' + lib.optionalString stdenv.isLinux ''
|
||||||
wrapProgram $out/bin/skopeo \
|
wrapProgram $out/bin/skopeo \
|
||||||
--prefix PATH : ${stdenv.lib.makeBinPath [ fuse-overlayfs ]}
|
--prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -27,10 +27,10 @@ stdenv.mkDerivation {
|
||||||
"LD8=${stdenv.cc.targetPrefix}ld"
|
"LD8=${stdenv.cc.targetPrefix}ld"
|
||||||
"OBJCOPY8=${stdenv.cc.targetPrefix}objcopy"
|
"OBJCOPY8=${stdenv.cc.targetPrefix}objcopy"
|
||||||
"OBJDUMP8=${stdenv.cc.targetPrefix}objdump"
|
"OBJDUMP8=${stdenv.cc.targetPrefix}objdump"
|
||||||
"CC=${stdenv.cc.targetPrefix}cc"
|
"CC7=${stdenv.cc.targetPrefix}cc"
|
||||||
"LD=${stdenv.cc.targetPrefix}ld"
|
"LD7=${stdenv.cc.targetPrefix}ld"
|
||||||
"OBJCOPY=${stdenv.cc.targetPrefix}objcopy"
|
"OBJCOPY7=${stdenv.cc.targetPrefix}objcopy"
|
||||||
"OBJDUMP=${stdenv.cc.targetPrefix}objdump"
|
"OBJDUMP7=${stdenv.cc.targetPrefix}objdump"
|
||||||
]
|
]
|
||||||
++ optionals (stdenv.isAarch64) [ "armstub8.bin" "armstub8-gic.bin" ]
|
++ optionals (stdenv.isAarch64) [ "armstub8.bin" "armstub8-gic.bin" ]
|
||||||
++ optionals (stdenv.isAarch32) [ "armstub7.bin" "armstub8-32.bin" "armstub8-32-gic.bin" ]
|
++ optionals (stdenv.isAarch32) [ "armstub7.bin" "armstub8-32.bin" "armstub8-32-gic.bin" ]
|
||||||
|
|
|
@ -875,7 +875,7 @@
|
||||||
"uk_transport" = ps: with ps; [ ];
|
"uk_transport" = ps: with ps; [ ];
|
||||||
"unifi" = ps: with ps; [ aiounifi ];
|
"unifi" = ps: with ps; [ aiounifi ];
|
||||||
"unifi_direct" = ps: with ps; [ pexpect ];
|
"unifi_direct" = ps: with ps; [ pexpect ];
|
||||||
"unifiled" = ps: with ps; [ ]; # missing inputs: unifiled
|
"unifiled" = ps: with ps; [ unifiled ];
|
||||||
"universal" = ps: with ps; [ ];
|
"universal" = ps: with ps; [ ];
|
||||||
"upb" = ps: with ps; [ ]; # missing inputs: upb_lib
|
"upb" = ps: with ps; [ ]; # missing inputs: upb_lib
|
||||||
"upc_connect" = ps: with ps; [ connect-box ];
|
"upc_connect" = ps: with ps; [ connect-box ];
|
||||||
|
|
|
@ -1,27 +1,33 @@
|
||||||
{ lib, stdenv, fetchurl, bison, cmake, pkgconfig
|
{ lib, stdenv, fetchurl, bison, cmake, pkgconfig
|
||||||
, boost, icu, libedit, libevent, lz4, ncurses, openssl, protobuf, re2, readline, zlib
|
, boost, icu, libedit, libevent, lz4, ncurses, openssl, protobuf, re2, readline, zlib, zstd
|
||||||
, numactl, perl, cctools, CoreServices, developer_cmds, libtirpc, rpcsvc-proto
|
, numactl, perl, cctools, CoreServices, developer_cmds, libtirpc, rpcsvc-proto
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
self = stdenv.mkDerivation rec {
|
self = stdenv.mkDerivation rec {
|
||||||
pname = "mysql";
|
pname = "mysql";
|
||||||
version = "8.0.17";
|
version = "8.0.22";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz";
|
url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1mjrlxn8vigi69r0r674j2dibdnkaar01ji5965gsyx7k60z7qy6";
|
sha256 = "9fd85bb243940ef8234d21384ef421a0962fd4d13406fc1420efa902115ce17a";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./abi-check.patch
|
./abi-check.patch
|
||||||
./libutils.patch
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ bison cmake pkgconfig rpcsvc-proto ];
|
nativeBuildInputs = [ bison cmake pkgconfig rpcsvc-proto ];
|
||||||
|
|
||||||
|
## NOTE: MySQL upstream frequently twiddles the invocations of libtool. When updating, you might proactively grep for libtool references.
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool
|
||||||
|
substituteInPlace cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost icu libedit libevent lz4 ncurses openssl protobuf re2 readline zlib
|
boost icu libedit libevent lz4 ncurses openssl protobuf re2 readline zlib
|
||||||
|
zstd
|
||||||
] ++ lib.optionals stdenv.isLinux [
|
] ++ lib.optionals stdenv.isLinux [
|
||||||
numactl libtirpc
|
numactl libtirpc
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
--- a/cmake/libutils.cmake
|
|
||||||
+++ b/cmake/libutils.cmake
|
|
||||||
@@ -345 +345 @@ MACRO(MERGE_CONVENIENCE_LIBRARIES)
|
|
||||||
- COMMAND /usr/bin/libtool -static -o $<TARGET_FILE:${TARGET}>
|
|
||||||
+ COMMAND libtool -static -o $<TARGET_FILE:${TARGET}>
|
|
|
@ -1,23 +1,27 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildGoModule
|
, buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gdu";
|
pname = "gdu";
|
||||||
version = "2.1.0";
|
version = "2.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dundee";
|
owner = "dundee";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0gk36z8xzj7blwzs080fqsz76hn56c89xcsyil6n5cfkbyf85c6i";
|
sha256 = "0ajkc0vbzyl56d6z03s5vb17frjrg5wl145x60asnrmh7lg8adsj";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "1jqbsda9bch3awdq816w4jybv7wz9mfflmvs5y2wsa2qnhn9nbyp";
|
vendorSha256 = "1jqbsda9bch3awdq816w4jybv7wz9mfflmvs5y2wsa2qnhn9nbyp";
|
||||||
|
|
||||||
buildFlagsArray = [ "-ldflags=-s -w -X main.AppVersion=${version}" ];
|
buildFlagsArray = [ "-ldflags=-s -w -X main.AppVersion=${version}" ];
|
||||||
|
|
||||||
|
# analyze/dev_test.go: undefined: processMounts
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Disk usage analyzer with console interface";
|
description = "Disk usage analyzer with console interface";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
|
@ -17644,7 +17644,7 @@ in
|
||||||
mysql80 = callPackage ../servers/sql/mysql/8.0.x.nix {
|
mysql80 = callPackage ../servers/sql/mysql/8.0.x.nix {
|
||||||
inherit (darwin) cctools developer_cmds;
|
inherit (darwin) cctools developer_cmds;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
boost = boost169; # Configure checks for specific version.
|
boost = boost173; # Configure checks for specific version.
|
||||||
protobuf = protobuf3_7;
|
protobuf = protobuf3_7;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7789,6 +7789,8 @@ in {
|
||||||
|
|
||||||
unifi = callPackage ../development/python-modules/unifi { };
|
unifi = callPackage ../development/python-modules/unifi { };
|
||||||
|
|
||||||
|
unifiled = callPackage ../development/python-modules/unifiled { };
|
||||||
|
|
||||||
units = callPackage ../development/python-modules/units { };
|
units = callPackage ../development/python-modules/units { };
|
||||||
|
|
||||||
unittest2 = callPackage ../development/python-modules/unittest2 { };
|
unittest2 = callPackage ../development/python-modules/unittest2 { };
|
||||||
|
|
Loading…
Reference in New Issue