nixpkgs/pkgs/development/libraries/talloc/default.nix
Florian Friesdorf ad3d180d6f attempt to fix talloc build on darwin
see: https://bugzilla.samba.org/show_bug.cgi?id=7000

svn path=/nixpkgs/trunk/; revision=29430
2011-09-21 23:23:12 +00:00

24 lines
628 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "talloc-2.0.1";
src = fetchurl {
url = "http://samba.org/ftp/talloc/${name}.tar.gz";
md5 = "c6e736540145ca58cb3dcb42f91cf57b";
};
configureFlags = "--enable-talloc-compat1 --enable-largefile";
patchPhase = if stdenv.isDarwin then ''
substituteInPlace "Makefile" --replace "SONAMEFLAG = #" "SONAMEFLAG = -install_name"
'' else "";
meta = {
description = "talloc is a hierarchical pool based memory allocator with destructors";
homepage = http://tdb.samba.org/;
license = "GPLv3";
platforms = stdenv.lib.platforms.all;
};
}