f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ustr";
|
|
version = "1.0.4";
|
|
|
|
src = fetchgit {
|
|
url = "http://www.and.org/ustr/ustr.git";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-pQrQy+S9fVFl8Mop4QmwEAXGiBSheQE4HgAZ4srFz64=";
|
|
};
|
|
|
|
# Fixes bogus warnings that failed libsemanage
|
|
patches = [ ./va_args.patch ];
|
|
|
|
# Work around gcc5 switch to gnu11
|
|
env.NIX_CFLAGS_COMPILE = "-std=gnu89";
|
|
|
|
# Fix detection of stdint.h
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace-fail "have_stdint_h=0" "have_stdint_h=1"
|
|
|
|
cat ustr-import.in | grep USTR_CONF
|
|
substituteInPlace ustr-import.in \
|
|
--replace-fail "USTR_CONF_HAVE_STDINT_H 0" "USTR_CONF_HAVE_STDINT_H 1"
|
|
'';
|
|
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
"LDCONFIG=echo"
|
|
"HIDE="
|
|
];
|
|
|
|
# Remove debug libraries
|
|
postInstall = ''
|
|
find $out/lib -name \*debug\* -delete
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.and.org/ustr/";
|
|
description = "Micro String API for C language";
|
|
mainProgram = "ustr-import";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|