mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
73 lines
2.1 KiB
Nix
73 lines
2.1 KiB
Nix
# Copyright (c) 2019-2023, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ callPackage
|
|
, fetchurl
|
|
, python3
|
|
, pkg-config
|
|
, wafHook
|
|
}:
|
|
|
|
let
|
|
pkgsCross = callPackage ./cross-pkgs.nix { };
|
|
in
|
|
|
|
pkgsCross.stdenv.mkDerivation rec {
|
|
pname = "talloc";
|
|
version = "2.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/talloc/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-hez55GXiD5j5lQpS6aQR4UMgvFVfolfYdpe356mx2KY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config python3 wafHook ];
|
|
buildInputs = [ ];
|
|
|
|
wafPath = "./buildtools/bin/waf";
|
|
wafConfigureFlags = [
|
|
"--disable-rpath"
|
|
"--disable-python"
|
|
"--cross-compile"
|
|
"--cross-answers=cross-answers.txt"
|
|
];
|
|
|
|
preConfigure = ''
|
|
export PYTHONHASHSEED=1
|
|
cat <<EOF > cross-answers.txt
|
|
Checking uname sysname type: "Linux"
|
|
Checking uname machine type: "dontcare"
|
|
Checking uname release type: "dontcare"
|
|
Checking uname version type: "dontcare"
|
|
Checking simple C program: OK
|
|
building library support: OK
|
|
Checking for large file support: OK
|
|
Checking for -D_FILE_OFFSET_BITS=64: OK
|
|
Checking for WORDS_BIGENDIAN: OK
|
|
Checking for C99 vsnprintf: OK
|
|
Checking for HAVE_SECURE_MKSTEMP: OK
|
|
rpath library support: OK
|
|
-Wl,--version-script support: FAIL
|
|
Checking correct behavior of strtoll: OK
|
|
Checking correct behavior of strptime: OK
|
|
Checking for HAVE_IFACE_GETIFADDRS: OK
|
|
Checking for HAVE_IFACE_IFCONF: OK
|
|
Checking for HAVE_IFACE_IFREQ: OK
|
|
Checking getconf LFS_CFLAGS: OK
|
|
Checking for large file support without additional flags: OK
|
|
Checking for working strptime: OK
|
|
Checking for HAVE_SHARED_MMAP: OK
|
|
Checking for HAVE_MREMAP: OK
|
|
Checking for HAVE_INCOHERENT_MMAP: OK
|
|
Checking getconf large file support flags work: OK
|
|
EOF
|
|
'';
|
|
|
|
# can't link unneeded .so, we'll link a static one by hand
|
|
buildPhase = "python ./buildtools/bin/waf build || true";
|
|
installPhase = ''
|
|
mkdir -p $out/lib $out/include
|
|
${pkgsCross.stdenv.cc.targetPrefix}ar q $out/lib/libtalloc.a \
|
|
bin/default/talloc.c.[0-9]*.o
|
|
cp talloc.h $out/include/
|
|
'';
|
|
}
|