Merge branch 'master' into add-missing-licenses
Conflicts: pkgs/applications/version-management/subversion/default.nix
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "efibootmgr-${version}";
|
||||
version = "16";
|
||||
version = "17";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
owner = "rhboot";
|
||||
repo = "efibootmgr";
|
||||
rev = version;
|
||||
sha256 = "0b27h8vf1b6laln5n0wk2hkzyyh87sxanj7wrz9kimyx03dcq6vi";
|
||||
sha256 = "1niicijxg59rsmiw3rsjwy4bvi1n42dynvm01lnp9haixdzdpq03";
|
||||
};
|
||||
|
||||
makeFlags = [ "EFIDIR=nixos" ];
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, libaio, python, zlib }:
|
||||
|
||||
let
|
||||
version = "3.7";
|
||||
sha256 = "1m2slyxhzyznq283m6ljjgjg38i0hxg537bwhfs12qskv00c4vsk";
|
||||
in
|
||||
{ stdenv, fetchFromGitHub, makeWrapper
|
||||
, libaio, python, zlib
|
||||
, withGnuplot ? false, gnuplot ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fio-${version}";
|
||||
version = "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "axboe";
|
||||
repo = "fio";
|
||||
rev = "fio-${version}";
|
||||
inherit sha256;
|
||||
owner = "axboe";
|
||||
repo = "fio";
|
||||
rev = "fio-${version}";
|
||||
sha256 = "1krifr4ms7x229a3p088zl5rpdrfwz6bw4c2lrz3hksignjxaw91";
|
||||
};
|
||||
|
||||
buildInputs = [ python zlib ]
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) libaio;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postPatch = ''
|
||||
@@ -27,9 +27,14 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
|
||||
'';
|
||||
|
||||
postInstall = stdenv.lib.optionalString withGnuplot ''
|
||||
wrapProgram $out/bin/fio2gnuplot \
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath [ gnuplot ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
||||
description = "Flexible IO Tester - an IO benchmark tool";
|
||||
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
baseName = "ipmiutil";
|
||||
version = "3.1.1";
|
||||
version = "3.1.2";
|
||||
name = "${baseName}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/${baseName}/${name}.tar.gz";
|
||||
sha256 = "1w1smjhinddf139yir44y88j5bjw5kzmprk2ljc3k6xz3va7v1k0";
|
||||
sha256 = "00s7qbmywk3wka985lhhki17xs7d0ll8p172avv1pzmdwfrm703n";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, nvidia_x11, cudatoolkit, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nvtop-${version}";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Syllo";
|
||||
repo = "nvtop";
|
||||
rev = version;
|
||||
sha256 = "0gampikzmd1l0vdhvarl0hckl6kmjh2rwcllpg6rrm2p75njw7hv";
|
||||
};
|
||||
|
||||
cmakeFlags = [
|
||||
"-DNVML_INCLUDE_DIRS=${cudatoolkit}/include"
|
||||
"-DNVML_LIBRARIES=${nvidia_x11}/lib/libnvidia-ml.so.390.67"
|
||||
"-DCMAKE_BUILD_TYPE=Release"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ ncurses nvidia_x11 cudatoolkit ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A (h)top like like task monitor for NVIDIA GPUs";
|
||||
homepage = https://github.com/Syllo/nvtop;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ willibutz ];
|
||||
};
|
||||
}
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# this is what `osquery --help` will show as the version.
|
||||
OSQUERY_BUILD_VERSION = version;
|
||||
OSQUERY_PLATFORM = "nixos;${stdenv.lib.version}";
|
||||
OSQUERY_PLATFORM = "NixOS;";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facebook";
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
, libdbi ? null, net_snmp ? null, libuuid ? null, curl ? null, gnutls ? null
|
||||
, libgcrypt ? null, liblognorm ? null, openssl ? null, librelp ? null, libksi ? null
|
||||
, libgt ? null, liblogging ? null, libnet ? null, hadoop ? null, rdkafka ? null
|
||||
, libmongo-client ? null, czmq ? null, rabbitmq-c ? null, hiredis ? null
|
||||
, libmongo-client ? null, czmq ? null, rabbitmq-c ? null, hiredis ? null, mongoc ? null
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
@@ -11,21 +11,21 @@ let
|
||||
mkFlag = cond: name: if cond then "--enable-${name}" else "--disable-${name}";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rsyslog-8.21.0";
|
||||
name = "rsyslog-8.37.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.rsyslog.com/files/download/rsyslog/${name}.tar.gz";
|
||||
sha256 = "1arrhc9fw79sp7dxkf7gyfwibyr2i1000pfds5c7n43mgglgvcdx";
|
||||
sha256 = "1rs7y7xgjm82j4mp0897x2myv73kkcj86np37y7qzgca9jdjhp19";
|
||||
};
|
||||
|
||||
#patches = [ ./fix-gnutls-detection.patch ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [
|
||||
fastJson libestr json_c zlib pythonPackages.docutils libkrb5 jemalloc
|
||||
fastJson libestr json_c zlib pythonPackages.docutils libkrb5 jemalloc
|
||||
postgresql libdbi net_snmp libuuid curl gnutls libgcrypt liblognorm openssl
|
||||
librelp libgt libksi liblogging libnet hadoop rdkafka libmongo-client czmq
|
||||
rabbitmq-c hiredis
|
||||
rabbitmq-c hiredis mongoc
|
||||
] ++ stdenv.lib.optional (mysql != null) mysql.connector-c
|
||||
++ stdenv.lib.optional stdenv.isLinux systemd;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user