2008-01-28 20:41:55 +01:00
|
|
|
args: with args;
|
2009-04-22 01:18:09 +02:00
|
|
|
|
2008-01-28 20:41:55 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-04-22 01:18:09 +02:00
|
|
|
name = "gamin-0.1.9";
|
2008-01-28 20:41:55 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
|
|
|
|
sha256 = "0fgjfyr0nlkpdxj94a4qfm82wypljdyv1b6l56v7i9jdx0hcdqhr";
|
|
|
|
};
|
2008-01-28 20:41:55 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
buildInputs = [python pkgconfig glib];
|
2009-03-21 20:41:14 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
# `_GNU_SOURCE' is needed, e.g., to get `struct ucred' from
|
|
|
|
# <sys/socket.h> with Glibc 2.9.
|
|
|
|
configureFlags = "--disable-debug --with-python=${python} CPPFLAGS=-D_GNU_SOURCE";
|
2008-01-28 20:41:55 +01:00
|
|
|
}
|