Merge staging-next into staging
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xsecurelock";
|
||||
version = "1.5.1";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "xsecurelock";
|
||||
rev = "v${version}";
|
||||
sha256 = "1if8byaby18ydkrk4k5yy8n0981x1dfqikq59gfpb7c2rv0vgi7i";
|
||||
sha256 = "0zdwszscdw0p7kwpqqv1dywn00bq1wak2x602lb6hdmkffspi8bg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.10.0";
|
||||
version = "1.10.1";
|
||||
pname = "tigervnc";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TigerVNC";
|
||||
repo = "tigervnc";
|
||||
rev = "v1.10.0";
|
||||
sha256 = "0l0x7cq65wv9n93r952qsikwzcls1sq3r32mx0c4wg19dha0x1m4";
|
||||
rev = "v1.10.1";
|
||||
sha256 = "001n189d2f3psn7nxgl8188ml6f7jbk26cxn2835y3mnlk5lmhgr";
|
||||
};
|
||||
|
||||
inherit fontDirectories;
|
||||
|
||||
@@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = https://www.gnu.org/software/sharutils/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.ndowens ];
|
||||
maintainers = [];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{ fetchurl, stdenv, perl, openssh, rsync, logger }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rsnapshot-1.4.2";
|
||||
name = "rsnapshot-1.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://rsnapshot.org/downloads/${name}.tar.gz";
|
||||
sha256 = "05jfy99a0xs6lvsjfp3wz21z0myqhmwl2grn3jr9clijbg282ah4";
|
||||
sha256 = "1lavqmmsf53pim0nvming7fkng6p0nk2a51k2c2jdq0l7snpl31b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [perl openssh rsync logger];
|
||||
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://mike-fabian.github.io/ibus-typing-booster/;
|
||||
license = licenses.gpl3Plus;
|
||||
description = "A typing booster engine for the IBus platform";
|
||||
maintainers = with maintainers; [ ma27 ];
|
||||
maintainers = with maintainers; [ ];
|
||||
isIbusEngine = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -26,6 +26,6 @@ bundlerApp {
|
||||
description = "Trello interactive CLI on terminal";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/qcam/3llo;
|
||||
maintainers = with maintainers; [ ma27 ];
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "debianutils";
|
||||
version = "4.9";
|
||||
version = "4.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz";
|
||||
sha256 = "0gq7m2glwdhai93ms2qlnqjlynczzncxsddcq8l5yc6bp1f5r5r0";
|
||||
sha256 = "14a0fqdpwdw72790jjm01g5n7lwwaf9d6k78fflbysn5v62nd0mg";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
@@ -1,16 +1,31 @@
|
||||
{ stdenv, fetchFromGitHub, opencl-headers, cmake, jsoncpp, boost, makeWrapper,
|
||||
cudatoolkit, mesa, ethash, opencl-info, ocl-icd, openssl, pkg-config, cli11 }:
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
opencl-headers,
|
||||
cmake,
|
||||
jsoncpp,
|
||||
boost,
|
||||
makeWrapper,
|
||||
cudatoolkit,
|
||||
mesa,
|
||||
ethash,
|
||||
opencl-info,
|
||||
ocl-icd,
|
||||
openssl,
|
||||
pkg-config,
|
||||
cli11
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ethminer";
|
||||
version = "0.18.0-rc.0";
|
||||
version = "0.18.0";
|
||||
|
||||
src =
|
||||
fetchFromGitHub {
|
||||
owner = "ethereum-mining";
|
||||
repo = "ethminer";
|
||||
rev = "v${version}";
|
||||
sha256 = "0gwnwxahjfwr4d2aci7y3w206nc5ifssl28ildva98ys0d24wy7z";
|
||||
sha256 = "10b6s35axmx8kyzn2vid6l5nnzcaf4nkk7f5f7lg3cizv6lsj707";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/junegunn/fzf";
|
||||
description = "A command-line fuzzy finder written in Go";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
maintainers = with maintainers; [ filalex77 ma27 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
downloadPage = "https://github.com/tstack/lnav/releases";
|
||||
license = licenses.bsd2;
|
||||
version = "0.8.5";
|
||||
maintainers = [ maintainers.dochang ];
|
||||
maintainers = with maintainers; [ dochang ma27 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
# Apple dependencies
|
||||
, CoreServices
|
||||
, Security
|
||||
, cf-private
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@@ -40,7 +39,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
nativeBuildInputs = with pkgs; [ nix direnv which ];
|
||||
buildInputs =
|
||||
stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security cf-private ];
|
||||
stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security ];
|
||||
|
||||
passthru = {
|
||||
updater = with builtins; writeScript "copy-runtime-nix.sh" ''
|
||||
|
||||
@@ -27,6 +27,6 @@ in mkDerivation rec {
|
||||
description = "KDE Partition Manager";
|
||||
license = licenses.gpl2;
|
||||
homepage = https://www.kde.org/applications/system/kdepartitionmanager/;
|
||||
maintainers = with maintainers; [ peterhoeg ma27 ];
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ wine_custom libX11 libGLU libGL curl ];
|
||||
|
||||
propagatedbuildInputs = [ curl cabextract ];
|
||||
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
|
||||
|
||||
patches = [ ./pipelight.patch ];
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
, autoreconfHook, pkgconfig, docbook_xsl, libxslt, docbook_xml_dtd_45
|
||||
, acl, attr, boost, btrfs-progs, dbus, diffutils, e2fsprogs, libxml2
|
||||
, lvm2, pam, python, utillinux, fetchpatch }:
|
||||
, lvm2, pam, python, utillinux, fetchpatch, json_c }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snapper";
|
||||
version = "0.8.6";
|
||||
version = "0.8.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "openSUSE";
|
||||
repo = "snapper";
|
||||
rev = "v${version}";
|
||||
sha256 = "1czx8brfhbfi614mqw46d38xwq6w7d5aca3pibwx8zz47rn99w6d";
|
||||
sha256 = "0605j4f3plb6q8lwf82y2jhply6dwj49jgxk8j16wsbf5k7lqzfq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
buildInputs = [
|
||||
acl attr boost btrfs-progs dbus diffutils e2fsprogs libxml2
|
||||
lvm2 pam python utillinux
|
||||
lvm2 pam python utillinux json_c
|
||||
];
|
||||
|
||||
patches = [
|
||||
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postPatch = ''
|
||||
# Hard-coded root paths, hard-coded root paths everywhere...
|
||||
for file in {client,data,pam,scripts}/Makefile.am; do
|
||||
for file in {client,data,pam,scripts,zypp-plugin}/Makefile.am; do
|
||||
substituteInPlace $file \
|
||||
--replace '$(DESTDIR)/usr' "$out" \
|
||||
--replace "DESTDIR" "out" \
|
||||
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = https://www.freetype.org/ttfautohint;
|
||||
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
||||
maintainers = with maintainers; [ goibhniu ndowens ];
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage {
|
||||
CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.
|
||||
'';
|
||||
homepage = https://github.com/uutils/coreutils;
|
||||
maintainers = with maintainers; [ ma27 ];
|
||||
maintainers = with maintainers; [ ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
@@ -18,11 +18,11 @@ buildPythonPackage rec {
|
||||
# The websites youtube-dl deals with are a very moving target. That means that
|
||||
# downloads break constantly. Because of that, updates should always be backported
|
||||
# to the latest stable release.
|
||||
version = "2019.11.28";
|
||||
version = "2019.12.25";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "19xiwdn3l0kizyj7cik9vyhgrlwg7ss4wl4hy2pbbbqwh5vwppwk";
|
||||
sha256 = "13f7wv9v77zilhif0ndgjv4wn9glhmm14yh7axdcx5wglrgz38hf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
@@ -65,6 +65,6 @@ buildPythonPackage rec {
|
||||
'';
|
||||
license = licenses.publicDomain;
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fpletz enzime ];
|
||||
maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fpletz enzime ma27 ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -12,13 +12,13 @@ with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "acme-client";
|
||||
version = "0.2.4";
|
||||
version = "0.2.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "graywolf";
|
||||
repo = "acme-client-portable";
|
||||
rev = "v${version}";
|
||||
sha256 = "1yq2lkrnjwjs0h9mijqysnjmr7kp4zcq1f4cxr9n1db7pw8446xb";
|
||||
sha256 = "1d9yk87nj5gizkq26m4wqfh4xhlrn5xlfj7mfgvrpsdiwibqxrrw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook bison pkgconfig ];
|
||||
|
||||
@@ -64,7 +64,7 @@ in stdenv.mkDerivation {
|
||||
description = "A web-interface for hipache-proxy";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/emblica/airfield;
|
||||
maintainers = with maintainers; [ offline ma27 ];
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, libpcap, bison, flex, cyrus_sasl, tcp_wrappers,
|
||||
pkgconfig, procps, which, wget, lsof, net_snmp, perl }:
|
||||
pkgconfig, procps, which, wget, lsof, net-snmp, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "argus";
|
||||
@@ -10,9 +10,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1zzf688dbbcb5z2r9v1p28rddns6znzx35nc05ygza6lp7aknkna";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libpcap bison cyrus_sasl tcp_wrappers flex ];
|
||||
propagatedBuildInputs = [ procps which wget lsof net_snmp ];
|
||||
nativeBuildInputs = [ pkgconfig bison flex ];
|
||||
buildInputs = [ libpcap cyrus_sasl tcp_wrappers ];
|
||||
propagatedBuildInputs = [ procps which wget lsof net-snmp ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace events/argus-extip.pl \
|
||||
@@ -23,8 +23,8 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace events/argus-vmstat.sh \
|
||||
--replace vm_stat ${procps}/bin/vmstat
|
||||
substituteInPlace events/argus-snmp.sh \
|
||||
--replace /usr/bin/snmpget ${net_snmp}/bin/snmpget \
|
||||
--replace /usr/bin/snmpwalk ${net_snmp}/bin/snmpwalk
|
||||
--replace /usr/bin/snmpget ${stdenv.lib.getBin net-snmp}/bin/snmpget \
|
||||
--replace /usr/bin/snmpwalk ${stdenv.lib.getBin net-snmp}/bin/snmpwalk
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
||||
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
|
||||
# when updating this to >=7, check, see previous reverts:
|
||||
# nix-build -A nixos.tests.networking.scripted.macvlan.x86_64-linux nixos/release-combined.nix
|
||||
pname = "dhcpcd";
|
||||
version = "8.1.2";
|
||||
version = "8.1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://roy/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1b9mihp1mf2vng92fgks764a6pwf2gx7ccw6knja79c42nmyglyb";
|
||||
sha256 = "0gf1qif25wy5lffzw39pi4sshmpxz1f4a1m9sglj7am1gaix3817";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, net_snmp }:
|
||||
{ stdenv, fetchurl, autoreconfHook, net-snmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ifstat-legacy";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "01zmv6vk5kh5xmd563xws8a1qnxjb6b6kv59yzz9r3rrghxhd6c5";
|
||||
};
|
||||
|
||||
buildInputs = [ net_snmp ];
|
||||
buildInputs = [ net-snmp ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
|
||||
@@ -1,32 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, libnfnetlink, libnl, net_snmp, openssl, pkgconfig }:
|
||||
{ stdenv, fetchFromGitHub, nixosTests
|
||||
, libnfnetlink, libnl, net-snmp, openssl
|
||||
, pkgconfig, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "keepalived";
|
||||
version = "1.4.5";
|
||||
version = "2.0.19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "acassen";
|
||||
repo = "keepalived";
|
||||
rev = "v${version}";
|
||||
sha256 = "12r80rcfxrys826flaqcdlfhcr7q4ccsd62ra1svy9545vf02qmx";
|
||||
sha256 = "05jgr0f04z69x3zf3b9z04wczl15fnh69bs6j0yw55fij1k9nj4d";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "CVE-2018-19115.patch";
|
||||
url = "https://github.com/acassen/keepalived/pull/961/commits/f28015671a4b04785859d1b4b1327b367b6a10e9.patch";
|
||||
sha256 = "1jnwk7x4qdgv7fb4jzw6sihv62n8wv04myhgwm2vxn8nfkcgd1mm";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libnfnetlink
|
||||
libnl
|
||||
net_snmp
|
||||
net-snmp
|
||||
openssl
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
passthru.tests.keepalived = nixosTests.keepalived;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-sha1"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
|
||||
, libevent, readline, net_snmp, openssl
|
||||
, libevent, readline, net-snmp, openssl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
|
||||
buildInputs = [ libevent readline net_snmp openssl ];
|
||||
buildInputs = [ libevent readline net-snmp openssl ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
||||
@@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://gitlab.com/openconnect/ocserv;
|
||||
license = licenses.gpl2;
|
||||
description = "This program is openconnect VPN server (ocserv), a server for the openconnect VPN client.";
|
||||
maintainers = with maintainers; [ ma27 ];
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
asciidoc, cacert, libxml2, libxslt, docbook_xsl }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
version = "7.3.0";
|
||||
version = "7.3.2";
|
||||
pname = "offlineimap";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OfflineIMAP";
|
||||
repo = "offlineimap";
|
||||
rev = "v${version}";
|
||||
sha256 = "0v32s09zgi3jg2grwh1xzzgzpw333b9qflai7zh2hv3fx9xnfbyj";
|
||||
sha256 = "0rmj1ws6hljqnfap3p3js5s46kx85yc02hjkiki5zg44wn3hswjg";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@@ -23,7 +23,7 @@ python2Packages.buildPythonApplication rec {
|
||||
doCheck = false;
|
||||
|
||||
nativeBuildInputs = [ asciidoc libxml2 libxslt docbook_xsl ];
|
||||
propagatedBuildInputs = with python2Packages; [ six kerberos rfc6555 ];
|
||||
propagatedBuildInputs = with python2Packages; [ six kerberos rfc6555 pysocks ];
|
||||
|
||||
postInstall = ''
|
||||
make -C docs man
|
||||
@@ -35,6 +35,6 @@ python2Packages.buildPythonApplication rec {
|
||||
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
||||
homepage = http://offlineimap.org;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [ endocrimes ma27 ];
|
||||
maintainers = with stdenv.lib.maintainers; [ endocrimes ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.jetmore.org/john/code/swaks/";
|
||||
description = "A featureful, flexible, scriptable, transaction-oriented SMTP test tool";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ ndowens ];
|
||||
maintainers = with maintainers; [];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
|
||||
27
pkgs/tools/security/age/default.nix
Normal file
27
pkgs/tools/security/age/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "age";
|
||||
version = "1.0.0-beta2";
|
||||
goPackagePath = "github.com/FiloSottile/age";
|
||||
modSha256 = "0kwdwhkxgqjd8h1p7pm4h4xidp2vk840h1j4qya4qz8bjf9vskl9";
|
||||
|
||||
subPackages = [
|
||||
"cmd/age"
|
||||
"cmd/age-keygen"
|
||||
];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FiloSottile";
|
||||
repo = "age";
|
||||
rev = "v${version}";
|
||||
sha256 = "1n1ww8yjw0mg00dvnfmggww9kwp1hls0a85iv6vx9k89mzv8mdrq";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://age-encryption.org/";
|
||||
description = "Modern encryption tool with small explicit keys";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ tazjin ];
|
||||
};
|
||||
}
|
||||
@@ -59,7 +59,7 @@ buildGoPackage rec {
|
||||
'';
|
||||
license = licenses.asl20;
|
||||
homepage = https://github.com/theupdateframework/notary;
|
||||
maintainers = with maintainers; [ vdemeester ma27 ];
|
||||
maintainers = with maintainers; [ vdemeester ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -14,13 +14,13 @@ with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rng-tools";
|
||||
version = "6.8";
|
||||
version = "6.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nhorman";
|
||||
repo = "rng-tools";
|
||||
rev = "v${version}";
|
||||
sha256 = "1clm9i9xg3j79q0d6vinn6dx0nwh1fvzcmkqpcbay7mwsgkknvw2";
|
||||
sha256 = "065jf26s8zkicb95zc9ilksjdq9gqrh5vcx3mhi6mypbnamn6w98";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://tpmquotetools.sourceforge.net/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ak ndowens ];
|
||||
maintainers = with maintainers; [ ak ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Configuration editing tool";
|
||||
license = licenses.lgpl2;
|
||||
homepage = http://augeas.net/;
|
||||
maintainers = with maintainers; [ offline ndowens ];
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
, lm_sensors
|
||||
, mongoc
|
||||
, mosquitto
|
||||
, net_snmp
|
||||
, net-snmp
|
||||
, postgresql
|
||||
, protobufc
|
||||
, python
|
||||
@@ -243,10 +243,10 @@ let
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libatasmart udev ];
|
||||
};
|
||||
snmp = {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ net_snmp ];
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ net-snmp ];
|
||||
};
|
||||
snmp_agent = {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ net_snmp ];
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ net-snmp ];
|
||||
};
|
||||
statsd = {};
|
||||
swap = {};
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://gentoo.com/di/;
|
||||
license = licenses.zlib;
|
||||
updateWalker = true;
|
||||
maintainers = with maintainers; [ manveru ndowens ];
|
||||
maintainers = with maintainers; [ manveru ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Hardware detection tool from openSUSE";
|
||||
license = licenses.gpl2;
|
||||
homepage = https://github.com/openSUSE/hwinfo;
|
||||
maintainers = with maintainers; [ bobvanderlinden ndowens ];
|
||||
maintainers = with maintainers; [ bobvanderlinden ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Disk I/O latency measuring tool";
|
||||
maintainers = with maintainers; [ raskin ndowens ];
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl3Plus;
|
||||
homepage = https://github.com/koct9i/ioping;
|
||||
|
||||
@@ -53,7 +53,7 @@ stdenv.mkDerivation {
|
||||
xorgproto libX11 libXext libXt fontconfig
|
||||
freetype # fontsrv wants ft2build.h provides system fonts for acme and sam.
|
||||
] ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||
darwin.cf-private Carbon Cocoa IOKit Metal QuartzCore
|
||||
Carbon Cocoa IOKit Metal QuartzCore
|
||||
]);
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook, libestr, json_c, zlib, pythonPackages, fastJson
|
||||
, libkrb5 ? null, systemd ? null, jemalloc ? null, libmysqlclient ? null, postgresql ? null
|
||||
, libdbi ? null, net_snmp ? null, libuuid ? null, curl ? null, gnutls ? null
|
||||
, libdbi ? null, net-snmp ? null, libuuid ? null, curl ? null, gnutls ? null
|
||||
, libgcrypt ? null, liblognorm ? null, openssl ? null, librelp ? null, libksi ? null
|
||||
, liblogging ? null, libnet ? null, hadoop ? null, rdkafka ? null
|
||||
, libmongo-client ? null, czmq ? null, rabbitmq-c ? null, hiredis ? null, mongoc ? null
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [
|
||||
fastJson libestr json_c zlib pythonPackages.docutils libkrb5 jemalloc
|
||||
postgresql libdbi net_snmp libuuid curl gnutls libgcrypt liblognorm openssl
|
||||
postgresql libdbi net-snmp libuuid curl gnutls libgcrypt liblognorm openssl
|
||||
librelp libksi liblogging libnet hadoop rdkafka libmongo-client czmq
|
||||
rabbitmq-c hiredis mongoc
|
||||
] ++ stdenv.lib.optional (libmysqlclient != null) libmysqlclient
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
(mkFlag (libmysqlclient != null) "mysql")
|
||||
(mkFlag (postgresql != null) "pgsql")
|
||||
(mkFlag (libdbi != null) "libdbi")
|
||||
(mkFlag (net_snmp != null) "snmp")
|
||||
(mkFlag (net-snmp != null) "snmp")
|
||||
(mkFlag (libuuid != null) "uuid")
|
||||
(mkFlag (curl != null) "elasticsearch")
|
||||
(mkFlag (gnutls != null) "gnutls")
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stress-ng";
|
||||
version = "0.10.11";
|
||||
version = "0.10.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "16z45fmvncpa0bv91dpwarqfm9p7aiqkmlcpmv2y23rh6sikhkdq";
|
||||
sha256 = "0lazjxrlqzhxd6fg3y1vh38h66v8swkd9q2say4m6sglzkfqdfnq";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
||||
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/chneukirchen/xe;
|
||||
license = licenses.publicDomain;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ cstrahan ndowens ];
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
|
||||
description = "MS-Word/Excel/PowerPoint to text converter";
|
||||
platforms = platforms.all;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ ndowens ];
|
||||
maintainers = with maintainers; [];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Implementation of Markdown markup language in C";
|
||||
homepage = http://www.pell.portland.or.us/~orc/Code/discount/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ shell ndowens ];
|
||||
maintainers = with maintainers; [ shell ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://waterlan.home.xs4all.nl/dos2unix.html";
|
||||
changelog = "https://sourceforge.net/p/dos2unix/dos2unix/ci/dos2unix-${version}/tree/dos2unix/NEWS.txt?format=raw";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ c0bw3b ndowens ];
|
||||
maintainers = with maintainers; [ c0bw3b ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ let
|
||||
description = "Source code highlighting tool";
|
||||
homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ ndowens willibutz ];
|
||||
maintainers = with maintainers; [ willibutz ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
license = licenses.asl20;
|
||||
|
||||
maintainers = with maintainers; [ ericsagnes ndowens ];
|
||||
maintainers = with maintainers; [ ericsagnes ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = https://www.nongnu.org/numdiff/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ ndowens ];
|
||||
maintainers = with maintainers; [];
|
||||
platforms = platforms.gnu ++ platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ stdenv, fetchFromGitHub, CoreServices, CoreFoundation, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1";
|
||||
@@ -12,6 +12,20 @@ stdenv.mkDerivation rec {
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = stdenv.lib.optionals stdenv.isDarwin [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/zeux/qgrep/commit/21c4d1a5ab0f0bdaa0b5ca993c1315c041418cc6.patch";
|
||||
sha256 = "0wpxzrd9pmhgbgby17vb8279xwvkxfdd99gvv7r74indgdxqg7v8";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreFoundation ];
|
||||
|
||||
postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
|
||||
substituteInPlace Makefile \
|
||||
--replace "-msse2" "" --replace "-DUSE_SSE2" ""
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 qgrep $out/bin/qgrep
|
||||
'';
|
||||
@@ -23,5 +37,4 @@ stdenv.mkDerivation rec {
|
||||
maintainers = [ maintainers.yrashk ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ rustPlatform.buildRustPackage rec {
|
||||
'';
|
||||
homepage = https://github.com/phiresky/ripgrep-all;
|
||||
license = with licenses; [ agpl3Plus ];
|
||||
maintainers = with maintainers; [ zaninime ];
|
||||
maintainers = with maintainers; [ zaninime ma27 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec {
|
||||
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
||||
homepage = https://github.com/BurntSushi/ripgrep;
|
||||
license = with licenses; [ unlicense /* or */ mit ];
|
||||
maintainers = with maintainers; [ tailhook globin ];
|
||||
maintainers = with maintainers; [ tailhook globin ma27 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Command-line interface to various pastebins";
|
||||
homepage = http://wgetpaste.zlin.dk/;
|
||||
license = stdenv.lib.licenses.publicDomain;
|
||||
maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ndowens ];
|
||||
maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ buildGoPackage rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Extract urls from text";
|
||||
homepage = https://github.com/mvdan/xurls;
|
||||
maintainers = with maintainers; [ koral ndowens ];
|
||||
maintainers = with maintainers; [ koral ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
@@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://xmlgraphics.apache.org/fop/;
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ bjornfor ndowens ];
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user