nixpkgs/pkgs/tools/networking
Robin Gloster 6b05651c20
Revert "postgresql: Add dev output"
Firstly this creates a cycle in 9.6 .out <-> .dev after fixing the PGXS
path.

Secondly this breaks extension handling and the pg_config as it
resolves a lot of paths relatively resulting in the following bogus
output:

BINDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/bin
DOCDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/doc
HTMLDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/doc
INCLUDEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include
PKGINCLUDEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include
INCLUDEDIR-SERVER = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/include/server
LIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
PKGLIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
LOCALEDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/locale
MANDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share/man
SHAREDIR = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/share
SYSCONFDIR = /etc/postgresql
PGXS = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--prefix=/nix/store/irqqq4g173g9xrk1mh12kxv0s1d8dbyh-postgresql-9.5.9' '--with-openssl' '--with-libxml' '--sysconfdir=/etc' '--libdir=/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib' '--with-ossp-uuid' 'CC=gcc'
CC = gcc
CPPFLAGS = -D_GNU_SOURCE -I/nix/store/z6r0j2b4bcdfw3pck2x6ay0vvx0qzb92-libxml2-2.9.5-dev/include/libxml2
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -O2
CFLAGS_SL = -fPIC
LDFLAGS = -L../../../src/common -L/nix/store/ighspl5sa3qi1zy7nkih0c9p73xjfqa6-libxml2-2.9.5/lib -Wl,--as-needed -Wl,-rpath,'/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib',--enable-new-dtags
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgcommon -lpgport -lxml2 -lssl -lcrypto -lz -lreadline -lrt -lcrypt -ldl -lm
VERSION = PostgreSQL 9.5.9

This can probably only be properly fixed by rewriting pg_config in large
parts as it does not in any way respect splitting the postgres tree and
assumes it can simply resolve paths relative to its location. This does
not even handle symlinks:

$ result-dev/bin/pg_config
BINDIR = /home/robin/dev/nixpkgs-upstream/result-dev/bin
DOCDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/doc
HTMLDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/doc
INCLUDEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/include
PKGINCLUDEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/include
INCLUDEDIR-SERVER = /home/robin/dev/nixpkgs-upstream/result-dev/include/server
LIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
PKGLIBDIR = /nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib
LOCALEDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/locale
MANDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share/man
SHAREDIR = /home/robin/dev/nixpkgs-upstream/result-dev/share
SYSCONFDIR = /etc/postgresql
PGXS = /nix/store/csiq6zkn2c994kkdjln461jvgbka4yb1-postgresql-9.5.9-dev/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--prefix=/nix/store/irqqq4g173g9xrk1mh12kxv0s1d8dbyh-postgresql-9.5.9' '--with-openssl' '--with-libxml' '--sysconfdir=/etc' '--libdir=/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib' '--with-ossp-uuid' 'CC=gcc'
CC = gcc
CPPFLAGS = -D_GNU_SOURCE -I/nix/store/z6r0j2b4bcdfw3pck2x6ay0vvx0qzb92-libxml2-2.9.5-dev/include/libxml2
CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -O2
CFLAGS_SL = -fPIC
LDFLAGS = -L../../../src/common -L/nix/store/ighspl5sa3qi1zy7nkih0c9p73xjfqa6-libxml2-2.9.5/lib -Wl,--as-needed -Wl,-rpath,'/nix/store/85s9m7hpfzsl93wcb5gr6ii2km9mpx3z-postgresql-9.5.9-lib/lib',--enable-new-dtags
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgcommon -lpgport -lxml2 -lssl -lcrypto -lz -lreadline -lrt -lcrypt -ldl -lm
VERSION = PostgreSQL 9.5.9

cc @edolstra

Revert "bacula: fix after postgresql output splitting"

This reverts commit 13c9cbacdd.

Revert "postgresql: fix pgxs dir in pg_config"

This reverts commit 21998d597b.

Revert "rubyGems.pg: fix postgresql path"

This reverts commit e253ae7d3a.

Revert "kea: fix path to pg_config"

This reverts commit 086c636eb7.

Revert "php: fix build wrt. new postgres.dev build output"

This reverts commit 2f23a83920.

Revert "gdal: fix path to pg_config"

This reverts commit 032c50d45b.

Revert "postgresql: Add dev output"

This reverts commit b0280f598e.
2017-09-27 21:58:44 +02:00
..
ahcpd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
aircrack-ng aircrack-ng: 1.2-rc3 -> 1.2-rc4 2017-02-17 00:11:32 +01:00
airfield Replace 'with plaforms; platform' with 'platforms.platform' 2015-11-17 21:30:43 +01:00
altermime altermime: 0.3.10 -> 0.3.11 2017-08-01 12:34:12 +02:00
argus argus: init at 3.0.8.2 2016-08-22 22:17:14 +02:00
argus-clients argus-clients: init at 3.0.8.2 2016-08-24 00:13:38 +02:00
aria2 aria2: 1.31.0 -> 1.32.0 2017-05-21 20:27:44 +02:00
assh assh: add openssh to PATH 2017-09-21 23:03:55 +01:00
asynk Remove myself from maintainers 2017-01-31 11:00:14 +01:00
atftp atftp: 0.7 -> 0.7.1 2016-07-21 07:22:17 +03:00
autossh autossh: build on darwin too 2015-12-26 13:46:34 -08:00
axel axel: 2.13.1 -> 2.14.1 2017-09-23 00:32:04 +02:00
babeld pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
badvpn
biosdevname biosdevname: Broken on aarch64 2017-06-11 04:37:24 +03:00
bsd-finger treewide: Add lots of platforms to packages with no meta 2016-08-02 21:17:44 +03:00
bud Fix lots of fetchgit hashes (fallout from #15469) 2016-06-03 17:17:08 +03:00
bully treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
burpsuite pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
bwm-ng pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
cadaver cadaver: fix build against newer versions of openssl 2016-03-24 19:05:14 +01:00
carddav-util treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
ccnet seafile-client: 5.0.7 -> 6.1.0 2017-08-09 19:53:05 +02:00
chrony chrony: 3.0 -> 3.1 2017-06-20 03:45:42 +02:00
cjdns darwin: Disable yet another bunch of packages never having built successfully 2017-09-22 21:16:39 +03:00
cksfv
cmst pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
cntlm cntlm: 0.35.1 -> 0.92.3 2015-11-28 23:46:52 +01:00
connect connect: 1.104 -> 1.105 2017-03-01 20:09:46 -06:00
connman connman: 1.34 -> 1.35 2017-09-05 11:58:58 +02:00
connman-gtk connman-gtk: init at 1.1.1 2017-05-02 14:13:31 -03:00
connman-notify connman-notify: set platforms = linux 2016-09-17 13:52:00 +02:00
connman_dmenu treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
connmanui pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
corkscrew treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
curl curl: 7.55.0 -> 7.55.1 2017-08-14 19:21:47 +02:00
curl-unix-socket Replace 'with plaforms; platform' with 'platforms.platform' 2015-11-17 21:30:43 +01:00
cutter cutter: update from 1.03 to 1.04 2015-10-25 19:06:05 +01:00
darkstat treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
davix davix: 0.4.0 -> 0.6.4 (#18768) 2016-09-21 19:35:50 +02:00
dd-agent dd-agent: use https for homepage 2017-08-17 14:56:10 -07:00
ddclient ddclient: minor packaging cleanups 2017-08-13 21:56:48 +08:00
dhcp dhcp: 4.3.3 -> 4.3.4 2016-09-28 10:50:29 +02:00
dhcpcd Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
dhcpdump Use general hardening flag toggle lists 2016-03-05 18:55:26 +01:00
dhcping Add version attribute where maintainers |= nckx 2016-01-25 17:35:21 +01:00
dibbler dibbler: fix darwin build 2017-09-09 15:23:17 +02:00
dirb pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
djbdns djbdns: init at 1.05 2017-09-16 21:14:36 -04:00
dnscrypt-proxy dnscrypt-proxy: enable parallel building 2017-08-06 23:38:13 +02:00
dnscrypt-wrapper dnscrypt-wrapper: 0.2.2 -> 0.3 2017-08-29 21:35:20 +02:00
dnsmasq dnsmasq: 2.76 -> 2.77 2017-06-20 03:45:43 +02:00
dnsperf treewide: Add man & info outputs where necessary (instead of doc) 2017-08-11 21:32:54 +03:00
dnstop treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
driftnet driftnet: 0.7 -> 1.1.5 2017-03-06 07:58:38 -05:00
dropbear pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
easyrsa easyrsa: use autoreconfHook 2016-08-24 20:18:52 +00:00
eggdrop treewide: Use *Platform.extensions 2017-09-13 11:16:10 -04:00
email Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
envoy Merge remote-tracking branch 'upstream/master' into HEAD 2017-09-10 08:56:39 +02:00
fakeroute treewide: meta.platform -> meta.platforms 2017-05-02 19:32:02 -04:00
fastd fastd: fix meta.platforms typo 2016-10-14 00:02:30 +02:00
fdm pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ferm ferm: 2.3.1 -> 2.4.1 2017-09-22 18:42:38 +02:00
filegive
flannel flannel: 0.5.5 -> 0.6.2 2016-10-01 17:04:25 +02:00
flvstreamer flvstreamer: supports darwin 2017-04-23 18:08:41 -05:00
fping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
gandi-cli gandi-cli: 0.18 -> 0.19 2016-08-03 20:05:40 +02:00
getmail pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
gftp treewide: explicitly specify gtk and related package versions 2016-09-12 18:26:06 +03:00
gmvault gmvault: fix build 2017-09-07 09:28:03 +02:00
gupnp-tools gupnp-tools: 0.8.8 -> 0.8.13 2017-03-12 20:55:07 -05:00
gvpe gvpe: 2.25 -> 3.0 2017-03-09 03:12:26 +02:00
hans hans: 0.4.4 -> 1.0 2017-03-01 19:18:29 -06:00
haproxy haproxy: 1.7.8 -> 1.7.9 2017-09-09 17:53:20 +08:00
horst horst: git-2016-03-15 -> 5.0 2017-03-01 19:16:03 -06:00
hping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
hss hss: init at 1.0.1 (#25936) 2017-05-22 07:06:11 +01:00
htpdate htpdate: init at 1.1.3 2016-09-22 14:46:10 +10:00
http-prompt http-prompt: 0.9.1 -> 0.10.2 2017-08-15 14:53:17 +02:00
httpie Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
httping httping 2.5: fetch over https + license 2017-03-02 19:20:26 +01:00
httplab httplab: init at 0.1.0 2017-03-03 17:35:31 +01:00
httpstat Merge remote-tracking branch 'upstream/master' into HEAD 2016-10-26 13:06:43 +02:00
httptunnel
hue-cli hue-cli: init at 0.1.4 2017-07-20 04:20:07 +02:00
hyenae Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
i2p i2p: wrapper: Fix 64bit build 2017-06-17 16:25:17 +02:00
i2pd i2pd: 2.14.0 -> 2.15.0 2017-09-12 10:13:49 +02:00
ifstat-legacy ifstat-legacy: init at 1.1 2017-09-18 18:25:54 +08:00
iftop iftop: 0.17 -> 1.0pre4 2015-10-25 02:44:46 +03:00
imapproxy treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
imapsync imapsync: 1.684 -> 1.727 2017-05-29 12:19:29 +02:00
inadyn inadyn: 2.0 -> 2.1, fix build with libite 1.9 2017-08-01 06:16:03 +02:00
inetutils inetutils: fix service name 2017-04-20 10:33:42 +02:00
iodine
iouyap iouyap: init at 0.97 2017-09-11 19:21:49 +02:00
ip2location Add version attribute where maintainers |= nckx 2016-01-25 17:35:21 +01:00
ipcalc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
iperf Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
ipv6calc ipv6calc: 0.99.1 -> 0.99.2 2017-06-20 03:56:39 +02:00
isync isyncUnstable: 20170329 -> 20170514 2017-07-12 09:52:48 -05:00
jnettop jnettop: add patch for 64bit counters (#27283) 2017-07-10 20:02:07 +02:00
jwhois jwhois: fix service name 2017-04-20 07:33:38 +02:00
kea Revert "postgresql: Add dev output" 2017-09-27 21:58:44 +02:00
keepalived keepalived: 1.3.5 -> 1.3.6 2017-08-15 14:50:31 +02:00
lftp lftp: fix build on darwin 2017-09-01 12:58:32 +09:30
libreswan pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
linkchecker pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
lldpd lldpd: 0.9.7 -> 0.9.8 2017-08-27 02:33:32 +02:00
logmein-hamachi pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
lsh lsh: fix gcc5 build 2016-08-23 15:33:32 +00:00
maildrop treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
mailsend pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
mailutils mailutils: clean up and fix last test 2017-07-26 13:32:59 +02:00
maphosts maphosts: use gemdir 2017-01-18 00:52:48 +01:00
mcrcon mcrcon: init at 0.0.5 2017-05-29 22:46:23 +02:00
megatools megatools: use wrapGAppsHook 2017-05-11 20:34:32 +01:00
minidlna minidlna: 1.1.5 -> 1.2.1 2017-09-09 09:17:36 +02:00
minio-client minio-client: 20160821 -> 20170206 2017-03-28 20:04:53 +02:00
minissdpd minissdpd: 1.5.20160301 -> 1.5.20160301 2016-03-24 21:33:18 +01:00
miniupnpc miniupnpc: fix on darwin 2017-08-09 13:10:23 -07:00
miniupnpd miniupnpd: 1.9.20160222 -> 2.0 2016-04-22 17:11:20 +02:00
miredo miredo: init at 1.2.6 2016-12-31 21:03:27 +01:00
mitmproxy protobuf: remove old versions 2017-09-09 05:54:43 +03:00
modemmanager treewide: purge maintainers.urkud 2017-03-27 19:52:29 +02:00
mosh mosh: 1.3.0 -> 1.3.2 2017-07-30 20:58:24 +02:00
mpack Disable bunch of non-compiling packages on Darwin 2016-09-01 20:39:33 +03:00
mtr mtr: 0.87 -> 0.92 2017-09-14 18:14:19 +08:00
mu pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
nbd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ncftp Ncftp manpage /usr/local workaround 2015-11-22 14:16:35 -06:00
ndisc6 ndisc6: change meta.homepage to https 2017-07-12 20:32:56 +02:00
ndjbdns ndjbdns: build from latest sources which adds Darwin compatibility 2016-07-29 12:55:35 +02:00
netalyzr netalyzr: init at 57861 2017-09-05 08:12:40 +08:00
netboot Use general hardening flag toggle lists 2016-03-05 18:55:26 +01:00
netcat-gnu netcat: make netcat-openbsd the default netcat (#19411) 2016-10-30 15:06:04 +01:00
netcat-openbsd netcat-openbsd: 1.105 -> 1.130 2017-08-29 16:45:20 +02:00
nethogs nethogs: 0.8.1 -> 0.8.5 2016-07-13 13:17:24 +02:00
netkit/tftp pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
netmask netmask: use autoreconfHook 2017-08-31 20:14:35 +01:00
netrw pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
netselect netselect: Fix attempt to use unsupported permissions on files in store 2017-06-28 14:31:44 -05:00
netsniff-ng netsniff-ng: 0.6.1 -> 0.6.2 2016-11-09 02:24:45 +01:00
network-manager Merge pull request #29685 from eqyiel/networkmanager_openvpn-1.8.0 2017-09-26 01:07:29 +02:00
network-manager-applet network-manager-applet: Don't depend on webkitgtk by default 2017-09-27 12:08:33 +02:00
networkmanager_dmenu networkmanager_dmenu: unstable-2017-05-28 -> 1.1 2017-08-10 08:38:52 +02:00
nfdump nfdump: init at 1.6.15 2017-04-25 15:00:59 -07:00
ngrep ngrep: fix build due to new libpcap, use debian patches 2017-01-22 14:09:50 +01:00
ngrok-1 ngrok: use proper attribute names 2017-08-27 23:53:42 +01:00
ngrok-2 ngrok: use proper attribute names 2017-08-27 23:53:42 +01:00
noip treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
nss-mdns
nss-pam-ldapd nss-pam-ldapd: 0.8.13 -> 0.9.7 2017-05-27 02:53:22 +02:00
ntopng ntopng: prefer nixpkgs over in-tree deps 2016-05-11 19:33:08 -04:00
ntp Merge pull request #24573 from ambrop72/ntpd-fix 2017-04-06 11:06:13 +01:00
nuttcp nuttcp: fix macOS build 2017-04-08 23:28:03 -05:00
nylon treewide: Fix meta.platforms related typos 2016-08-02 21:17:44 +03:00
nzbget nzbget: 18.1 -> 19.0 2017-07-01 10:06:10 +02:00
ocproxy ocproxy: 1.50 -> 1.60 2017-03-06 07:50:50 -05:00
offlineimap offlineimap: 7.1.1 -> 7.1.2 2017-09-08 18:27:03 +02:00
olsrd olsrd: 0.6.6.1 -> 0.9.6.1 2017-03-12 08:38:24 +01:00
openconnect Add some dev outputs 2017-09-25 16:05:10 +02:00
openfortivpn openfortivpn: 1.2.0 -> 1.5.0 2017-09-20 09:21:42 +01:00
openntpd pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
openresolv openresolv: 3.8.1 -> 3.9.0 (#23362) 2017-03-05 21:49:48 +01:00
openssh openssh: update gssapi patch 2017-09-12 14:28:33 +01:00
openvpn pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
p2p rtorrent: update to current git HEAD to avoid build errors with recent cppunit 2017-09-20 16:53:03 +02:00
packetdrill darwin: Disable yet another bunch of packages never having built successfully 2017-09-22 21:16:39 +03:00
par2cmdline par2cmdline: 0.6.13 -> 0.7.3 2017-08-06 14:50:15 +02:00
pcapc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
pcapfix pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
pdnsd pdnsd: fix darwin build 2017-03-08 00:25:15 +01:00
pdsh pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
philter Remove unneeded 'with's from meta.platforms 2015-11-25 23:06:09 +01:00
pingtcp Fix lots of fetchgit hashes (fallout from #15469) 2016-06-03 17:17:08 +03:00
pirate-get pirate-get: 0.2.10 -> 0.2.12 2017-09-12 13:59:36 +02:00
pixiewps pixiewps: init at 1.2.2 2016-11-03 23:45:14 +02:00
polygraph polygraph: 4.3.2 -> 4.11.0 2017-08-30 01:21:10 +02:00
polysh Add tools/networking/polysh 2016-11-29 17:32:21 +03:00
ppp ppp: fix invalid use of substituteInPlace 2017-07-21 15:45:24 -05:00
pptp treewide: purge maintainers.urkud 2017-03-27 19:52:29 +02:00
pptpd pptpd: init at 1.4.0 2016-06-18 02:08:07 +01:00
privoxy privoxy: fix weird use of STRIP in the Makefile 2017-08-03 23:19:41 +02:00
proxychains proxychains: fix build, add -ldl to LDFLAGS 2016-11-25 12:17:11 +01:00
pssh pssh: init at 2.3.1 2016-12-06 00:46:48 -05:00
pwnat pwnat: 0.3-beta -> 2014-09-08 2016-09-07 23:52:21 +01:00
quicktun treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
radsecproxy radsecproxy: fix license 2017-09-23 15:37:28 +02:00
radvd radvd: 2.16 -> 2.17 2017-07-31 12:47:37 +02:00
ratools treewide: use less phases if not necessary 2017-08-11 11:40:36 +02:00
reaver-wps reaver: database on readwrite medium (#25321) 2017-05-07 19:01:36 +01:00
reaver-wps-t6x reaver: database on readwrite medium (#25321) 2017-05-07 19:01:36 +01:00
redir pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
redsocks darwin: Disable some packages that have never built successfully 2017-09-22 17:25:38 +03:00
ripmime Remove unneeded 'with's from meta.platforms 2015-11-25 23:06:09 +01:00
rp-pppoe rp-pppoe: 3.11 -> 3.12 2015-11-23 11:56:03 +00:00
s3cmd s3cmd: use python2 2016-11-24 22:28:02 +01:00
s3gof3r buildGoPackage: deps.json -> deps.nix in NIXON 2016-09-16 00:04:55 +01:00
s6-dns skarnet.org packages: fix darwin build 2017-03-26 17:30:41 -05:00
s6-networking skarnet.org packages: fix darwin build 2017-03-26 17:30:41 -05:00
samplicator samplicator: 1.3.7-beta6 -> 1.3.8rc1 2017-02-26 10:05:18 +01:00
shadowsocks-libev shadowsocks-libev: 2.5.0 -> 2.5.5 2016-10-16 22:41:50 +08:00
shncpd shncpd: init at 2016-06-22 2016-07-17 17:15:23 +02:00
siege siege: 4.0.1 -> 4.0.2 2016-07-12 13:31:31 +08:00
simpleproxy simpleproxy: init at 3.5 2017-05-27 17:42:48 +02:00
sipcalc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
sipsak treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
slimrat treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
smbldaptools treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
smokeping pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
snabb treewide: Use makeBinPath 2016-08-23 01:18:10 +03:00
socat socat: 1.7.3.1 -> 1.7.3.2 2017-02-17 00:11:03 +01:00
speedtest-cli speedtest-cli: 1.0.4 -> 1.0.6 2017-08-01 08:36:38 +02:00
spiped Captialize meta.description of all packages 2016-06-20 13:55:52 +02:00
srelay srelay: switch sf downloads to mirror:// 2016-08-20 19:14:31 +05:30
ssh-ident treewide: Add lots of meta.platforms 2016-08-02 21:42:43 +03:00
sshpass sshpass: 1.05 -> 1.06 2016-10-14 00:58:07 +03:00
ssldump ssldump: init at 09b3 2016-10-19 14:15:42 +00:00
ssmtp ssmtp: use the authPassFile option instead of authPass 2017-03-29 00:34:23 +02:00
sstp sstp: 1.0.10 -> 1.0.11 2017-03-01 16:48:07 -06:00
statsd statsd: 0.7.2 -> 0.8.0 2016-10-20 17:35:03 -04:00
strongswan strongswan: 5.5.3 -> 5.6.0 2017-08-25 22:10:36 +01:00
stun stun: gzip -9 -> gzip -9n 2016-12-20 15:32:14 +01:00
stunnel stunnel: 5.39 -> 5.41 2017-04-20 23:37:24 +02:00
surfraw pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
swaks pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
swec treewide: Fix 'lib.optional' misuses 2016-10-01 23:38:06 +03:00
tcpdump tcpdump: 4.9.1 -> 4.9.2 2017-09-06 16:42:43 +02:00
tcpflow tcpflow: 1.4.5 -> 1.4.6 (#15151) 2016-05-03 01:39:46 +01:00
tcpreplay tcpreplay: init at 4.2.5 (#25891) 2017-05-20 07:51:36 +01:00
tcptraceroute tcptraceroute: init at 1.5beta7 2017-05-20 16:21:51 +01:00
telepresence pkgs/telepresence: init at 0.65 2017-09-14 17:32:32 +02:00
telnet Use general hardening flag toggle lists 2016-03-05 18:55:26 +01:00
tftp-hpa Update homepage attributes: http -> https 2017-08-03 11:56:15 +02:00
tgt treewide: Use explicit 'dev' references to glibc 2016-08-30 03:11:09 +03:00
tinc tinc: 1.0.31 -> 1.0.32 2017-09-24 11:42:00 +02:00
tlspool tlspool: don't create unused directories 2017-08-11 22:40:12 +02:00
toxvpn toxvpn: 20161230 -> 2017-06-25 2017-06-25 20:17:20 -03:00
tracebox
traceroute traceroute: 2.0.21 -> 2.1.0 (#16809) 2016-07-09 14:40:14 +02:00
trickle Use general hardening flag toggle lists 2016-03-05 18:55:26 +01:00
ua pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
ucspi-tcp ucspi-tcp: remove setuid from install script 2017-07-04 11:02:36 +02:00
udptunnel
uget uget: 2.0.8 -> 2.0.10 2017-09-01 11:22:28 -03:00
unbound unbound: 1.6.5 -> 1.6.6 2017-09-20 22:23:05 +02:00
urlwatch Python: replace requests2 with requests tree-wide 2017-05-07 12:56:09 +02:00
uwimap Merge remote-tracking branch 'upstream/master' into hardened-stdenv 2016-05-30 19:39:34 +00:00
vde2 vde2: use python2 2016-11-24 22:28:03 +01:00
vlan vlan: disable format hardening 2016-08-04 11:03:28 +02:00
vpnc pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
vtun vtun: 3.0.3 -> 3.0.4 2016-11-20 16:36:52 +01:00
wakelan wakelan: refactor allow builds on non linux 2016-12-26 15:04:45 -06:00
wavemon wavemon: 0.7.6.20151001 -> 0.8.1 2017-08-01 08:36:38 +02:00
wbox pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
webalizer treewide: Add lots of platforms to packages with no meta 2016-08-02 21:17:44 +03:00
weighttp treewide: Add lots of platforms to packages with no meta 2016-08-02 21:17:44 +03:00
wget wget: add patch for CVE-2017-6508 2017-03-11 08:18:57 +01:00
whois whois: 5.2.17 -> 5.2.18 2017-08-24 21:20:03 +02:00
wicd wicd: use python2 2017-01-11 18:25:10 +01:00
wol wol: init at 0.7.1 2016-09-28 12:33:46 +02:00
wolfebin
wrk luajit: 2.1.0-beta2 -> 2.1.0-beta3 2017-05-02 14:00:45 +02:00
wuzz wuzz: 0.1.0 -> 0.2.0 (#23002) 2017-02-19 19:11:00 +00:00
x11-ssh-askpass pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
xl2tpd xl2tpd: 1.3.7 -> 1.3.10 2017-08-28 00:54:42 +02:00
zap pkgs: refactor needless quoting of homepage meta attribute (#27809) 2017-08-01 22:03:30 +02:00
zerotierone zerotierone: 1.2.2 -> 1.2.4 2017-05-16 10:43:32 -05:00