Merge master into x-updates

This commit is contained in:
Vladimír Čunát
2013-12-23 19:27:14 +01:00
74 changed files with 1702 additions and 852 deletions

View File

@@ -1,18 +1,18 @@
{ stdenv, fetchurl, buildPythonPackage
, python, cython, pkgconfig
, xorg, gtk, glib, pango, cairo, gdk_pixbuf, pygtk, atk, pygobject, pycairo
, ffmpeg_1, x264, libvpx, pil, libwebp }:
, ffmpeg, x264, libvpx, pil, libwebp }:
buildPythonPackage rec {
name = "xpra-0.9.5";
src = fetchurl {
url = "http://xpra.org/src/${name}.tar.bz2";
sha256 = "1qr9gxmfnkays9hrw2qki1jdkyxhbbkjx71gy23x423cfsxsjmiw";
};
buildInputs = [
python cython pkgconfig
buildInputs = [
python cython pkgconfig
xorg.libX11 xorg.renderproto xorg.libXrender xorg.libXi xorg.inputproto xorg.kbproto
xorg.randrproto xorg.damageproto xorg.compositeproto xorg.xextproto xorg.recordproto
@@ -21,10 +21,10 @@ buildPythonPackage rec {
pango cairo gdk_pixbuf atk gtk glib
ffmpeg_1 libvpx x264 libwebp
ffmpeg libvpx x264 libwebp
];
propagatedBuildInputs = [
propagatedBuildInputs = [
pil pygtk pygobject
];
@@ -36,7 +36,7 @@ buildPythonPackage rec {
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)"
python ./setup.py build --enable-Xdummy
'';
meta = {
homepage = http://xpra.org/;
description = "Persistent remote applications for X";

View File

@@ -1,4 +1,4 @@
{ fetchurl, stdenv, pkgconfig, db48, libgcrypt, avahi, libiconv, pam, openssl }:
{ fetchurl, stdenv, pkgconfig, db4, libgcrypt, avahi, libiconv, pam, openssl }:
stdenv.mkDerivation rec {
name = "netatalk-3.1.0";
@@ -8,10 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "1d8dc8ysslkis4yl1xab1w9p0pz7a1kg0i6fds4wxsp4fhb6wqhq";
};
buildInputs = [ pkgconfig db48 libgcrypt avahi libiconv pam openssl ];
buildInputs = [ pkgconfig db4 libgcrypt avahi libiconv pam openssl ];
configureFlags = [
"--with-bdb=${db48}"
"--with-bdb=${db4}"
"--with-openssl=${openssl}"
];

View File

@@ -1,4 +1,4 @@
{fetchurl, stdenv, flex, bdb}:
{fetchurl, stdenv, flex, db4}:
stdenv.mkDerivation rec {
name = "bogofilter-1.2.4";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
# FIXME: We would need `pax' as a "propagated build input" (for use
# by the `bf_tar' script) but we don't have it currently.
buildInputs = [ flex bdb ];
buildInputs = [ flex db4 ];
meta = {
homepage = http://bogofilter.sourceforge.net/;

View File

@@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }:
let
version = "2013.12.17.2";
version = "2013.12.20";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1dmv14v623v9afxfn0rw1gfdd91sngfgj4dg7hwbmnqsja0qxydv";
sha256 = "0cqr0rpa247gfk5fg65sj94x4d9a1s85343gnqmc763h5h8v50zb";
};
buildInputs = [ python ];

View File

@@ -1,12 +1,12 @@
{ stdenv, fetchurl, python, sysstat, unzip }:
stdenv.mkDerivation rec {
version = "3.8.0";
version = "4.0.1";
name = "dd-agent-${version}";
src = fetchurl {
url = "https://github.com/DataDog/dd-agent/archive/${version}.zip";
sha256 = "1mh22rbja07gc7ydn357hlij0dl2rygkqsya9ckynsvmkkzn2gyx";
sha256 = "0gybdbjkj7qwnzic03xkypagb30zhm22gp3nkwrdhi8fdmwz3nm1";
};
buildInputs = [ python unzip ];

View File

@@ -1,11 +1,11 @@
{ stdenv, fetchurl, libpcap, enableStatic ? false }:
stdenv.mkDerivation rec {
name = "tcpdump-4.4.0";
name = "tcpdump-4.5.1";
src = fetchurl {
url = "http://www.tcpdump.org/release/${name}.tar.gz";
sha256 = "1g9h2p31xwpdg88v7wv9hc8calq8sjs25800vzd9i45q5knln9qj";
sha256 = "15hb7zkzd66nag102qbv100hcnf7frglbkylmr8adwr8f5jkkaql";
};
buildInputs = [ libpcap ];

View File

@@ -1,16 +1,18 @@
{stdenv, fetchurl, eventlog, pkgconfig, libestr, libee, json_c, libuuid, zlib, gnutls}:
{stdenv, fetchurl, eventlog, pkgconfig, libestr, libee, json_c, libuuid, zlib, gnutls, libgcrypt, systemd}:
stdenv.mkDerivation {
name = "rsyslog-7.2.7";
name = "rsyslog-7.4.7";
src = fetchurl {
url = http://www.rsyslog.com/files/download/rsyslog/rsyslog-7.2.7.tar.gz;
sha256 = "0vgrbbklsvnwcy0m0kbxcj5lhpn2k9bsv0lh0vnyn6hc2hx56cs8";
url = http://www.rsyslog.com/files/download/rsyslog/rsyslog-7.4.7.tar.gz;
sha256 = "5fc7f930fa748bb6a9d86a3fc831eb1a14107db81b67d79ba8f113cf2776fa21";
};
buildInputs = [pkgconfig libestr libee json_c libuuid zlib gnutls];
buildInputs = [pkgconfig libestr libee json_c libuuid zlib gnutls libgcrypt systemd];
configureFlags = "--enable-gnutls";
preConfigure = ''
export configureFlags="$configureFlags --enable-gnutls --enable-cached-man-pages --enable-imjournal --with-systemdsystemunitdir=$out/etc/systemd/system"
'';
meta = {
homepage = "http://www.rsyslog.com/";