2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, glib }:
|
2009-04-21 16:18:09 -07:00
|
|
|
|
2013-09-14 07:52:01 -07:00
|
|
|
stdenv.mkDerivation (rec {
|
2011-07-07 10:25:47 -07:00
|
|
|
name = "gamin-0.1.10";
|
2008-01-28 11:41:55 -08:00
|
|
|
|
2009-04-21 16:18:09 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
|
2011-07-07 10:25:47 -07:00
|
|
|
sha256 = "18cr51y5qacvs2fc2p1bqv32rs8bzgs6l67zhasyl45yx055y218";
|
2009-04-21 16:18:09 -07:00
|
|
|
};
|
2008-01-28 11:41:55 -08:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-08 23:13:03 -08:00
|
|
|
|
|
|
|
buildInputs = [ python glib ];
|
2009-03-21 12:41:14 -07:00
|
|
|
|
2009-04-21 16:18:09 -07: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";
|
2012-03-08 23:13:03 -08:00
|
|
|
|
2015-04-05 19:55:22 -07:00
|
|
|
patches = [ ./deadlock.patch ]
|
|
|
|
++ map fetchurl (import ./debian-patches.nix)
|
2015-05-11 14:37:53 -07:00
|
|
|
++ stdenv.lib.optional stdenv.cc.isClang ./returnval.patch;
|
2013-09-06 17:49:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://people.gnome.org/~veillard/gamin/;
|
|
|
|
description = "A file and directory monitoring system";
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2008-01-28 11:41:55 -08:00
|
|
|
}
|
2013-09-14 07:52:01 -07:00
|
|
|
|
|
|
|
// stdenv.lib.optionalAttrs stdenv.isDarwin {
|
|
|
|
preBuild = ''
|
|
|
|
sed -i 's/,--version-script=.*$/\\/' libgamin/Makefile
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
|