mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +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
89 lines
2.0 KiB
Nix
89 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromBitbucket,
|
|
mlton,
|
|
pkg-config,
|
|
getopt,
|
|
boehmgc,
|
|
darwin,
|
|
libbacktrace,
|
|
libpng,
|
|
ncurses,
|
|
readline,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "c0";
|
|
version = "0-unstable-2023-09-05";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "c0-lang";
|
|
repo = "c0";
|
|
rev = "608f97eef5d81bb85963d66f955730dd93996f67";
|
|
hash = "sha256-lRIEtclx+NKxAO72nsvnxVeEGCEe6glC6w8MXh1HEwY=";
|
|
};
|
|
|
|
patches = [
|
|
./use-system-libraries.patch
|
|
];
|
|
|
|
postPatch =
|
|
''
|
|
substituteInPlace cc0/Makefile \
|
|
--replace '$(shell ./get_version.sh)' '${version}'
|
|
substituteInPlace cc0/compiler/bin/buildid \
|
|
--replace '`../get_version.sh`' '${version}' \
|
|
--replace '`date`' '1970-01-01T00:00:00Z' \
|
|
--replace '`hostname`' 'nixpkgs'
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
for f in cc0/compiler/bin/coin-o0-support cc0/compiler/bin/cc0-o0-support; do
|
|
substituteInPlace $f --replace '$(brew --prefix gnu-getopt)' '${getopt}'
|
|
done
|
|
'';
|
|
|
|
preConfigure = ''
|
|
cd cc0/
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
getopt
|
|
mlton
|
|
pkg-config
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.sigtool ];
|
|
|
|
buildInputs = [
|
|
boehmgc
|
|
libbacktrace
|
|
libpng
|
|
ncurses
|
|
readline
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
mv $out/c0-mode/ $out/share/emacs/site-lisp/
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://bitbucket.org/c0-lang/c0.git";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Small safe subset of the C programming language, augmented with contracts";
|
|
homepage = "https://c0.cs.cmu.edu/";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
# line 1: ../../bin/wrappergen: cannot execute: required file not found
|
|
# make[2]: *** [../../lib.mk:83:
|
|
broken = stdenv.hostPlatform.isLinux;
|
|
};
|
|
}
|