mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
87 lines
2.4 KiB
Nix
87 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
perl,
|
|
libtool,
|
|
pkg-config,
|
|
gettext,
|
|
mandoc,
|
|
ed,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bsdbuild";
|
|
version = "3.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://stable.hypertriton.com/bsdbuild/${pname}-${version}.tar.gz";
|
|
sha256 = "1zrdjh7a6z4khhfw9zrp490afq306cpl5v8wqz2z55ys7k1n5ifl";
|
|
};
|
|
|
|
buildInputs = [
|
|
perl
|
|
mandoc
|
|
ed
|
|
];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
libtool
|
|
gettext
|
|
];
|
|
|
|
prePatch = ''
|
|
#ignore unfamiliar flags
|
|
substituteInPlace configure \
|
|
--replace '--sbindir=*' '--sbindir=* | --includedir=* | --oldincludedir=*'
|
|
#same for packages using bsdbuild
|
|
substituteInPlace mkconfigure.pl \
|
|
--replace '--sbindir=*' '--sbindir=* | --includedir=* | --oldincludedir=*'
|
|
#insert header for missing NULL macro
|
|
for f in db4.pm sdl_ttf.pm mysql.pm uim.pm strlcpy.pm getpwuid.pm \
|
|
getaddrinfo.pm strtoll.pm free_null.pm getpwnam_r.pm \
|
|
gettimeofday.pm gethostbyname.pm xinerama.pm strsep.pm \
|
|
fontconfig.pm gettext.pm pthreads.pm strlcat.pm kqueue.pm wgl.pm \
|
|
alsa.pm crypt.pm cracklib.pm freesg-rg.pm edacious.pm mmap.pm \
|
|
agar.pm x11.pm x11.pm execvp.pm agar-core.pm dyld.pm getopt.pm \
|
|
strtold.pm sdl_image.pm shl_load.pm glx.pm percgi.pm timerfd.pm \
|
|
glob.pm dlopen.pm freesg.pm csidl.pm perl.pm select.pm \
|
|
portaudio.pm etubestore.pm;
|
|
do
|
|
ed -s -v BSDBuild/$f << EOF
|
|
/#include
|
|
i
|
|
#include <stddef.h>
|
|
.
|
|
w
|
|
EOF
|
|
done
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-libtool=${libtool}/bin/libtool"
|
|
"--enable-nls=yes"
|
|
"--with-gettext=${gettext}"
|
|
"--with-manpages=yes"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://bsdbuild.hypertriton.com";
|
|
description = "Cross-platform build system";
|
|
|
|
longDescription = ''
|
|
BSDBuild is a cross-platform build system. Derived from the
|
|
traditional 4.4BSD make libraries, BSDBuild allows BSD-style
|
|
Makefiles (without BSD make extensions), and works natively
|
|
under most operating systems and make flavors. Since BSDBuild
|
|
is implemented as a library (as opposed to a macro package),
|
|
Makefiles are edited directly, as opposed to being compiled
|
|
(however, if the build directory is separate from the source
|
|
directory, BSDBuild will produce the required Makefiles in place).
|
|
'';
|
|
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|