nixpkgs/pkgs/by-name/pi/picoc/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

59 lines
1.8 KiB
Nix

{ lib, stdenv, fetchFromGitLab, readline }:
stdenv.mkDerivation {
pname = "picoc";
version = "2.1-unstable-2018-06-05";
src = fetchFromGitLab {
owner = "zsaleeba";
repo = "picoc";
rev = "dc85a51e9211cfb644f0a85ea9546e15dc1141c3";
hash = "sha256-yWPRbJLT09E7pqqs9E2k48ECoRR2nhcgTgK5pumkrxo=";
};
buildInputs = [ readline ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.hostPlatform.isDarwin [
"-Wno-error=implicit-function-declaration"
]);
enableParallelBuilding = true;
# Tests are currently broken on i686 see
# https://hydra.nixos.org/build/24003763/nixlog/1
doCheck = !stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch64;
checkTarget = "test";
installPhase = ''
runHook preInstall
install -Dm755 picoc $out/bin/picoc
mkdir -p $out/include
install -m644 *.h $out/include
runHook postInstall
'';
meta = with lib; {
description = "Very small C interpreter for scripting";
mainProgram = "picoc";
longDescription = ''
PicoC is a very small C interpreter for scripting. It was originally
written as a script language for a UAV's on-board flight system. It's
also very suitable for other robotic, embedded and non-embedded
applications. The core C source code is around 3500 lines of code. It's
not intended to be a complete implementation of ISO C but it has all the
essentials. When compiled it only takes a few k of code space and is also
very sparing of data space. This means it can work well in small embedded
devices.
'';
homepage = "https://gitlab.com/zsaleeba/picoc";
downloadPage = "https://code.google.com/p/picoc/downloads/list";
license = licenses.bsd3;
platforms = platforms.unix;
};
}