571c71e6f7
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.
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, ncurses, buildPackages }:
|
|
|
|
let
|
|
isCrossCompiling = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "s9fes";
|
|
version = "20181205";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.t3x.org/s9fes/s9fes-${version}.tgz";
|
|
sha256 = "sha256-Lp/akaDy3q4FmIE6x0fj9ae/SOD7tdsmzy2xdcCh13o=";
|
|
};
|
|
|
|
# Fix cross-compilation
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace 'ar q' '${stdenv.cc.targetPrefix}ar q' \
|
|
--replace 'strip' '${stdenv.cc.targetPrefix}strip'
|
|
${lib.optionalString isCrossCompiling "substituteInPlace Makefile --replace ./s9 '${buildPackages.s9fes}/bin/s9'"}
|
|
'';
|
|
|
|
buildInputs = [ ncurses ];
|
|
preBuild = ''
|
|
makeFlagsArray+=(CFLAGS="-O2 -std=c89")
|
|
'';
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "PREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
# ...-bash-5.2-p15/bin/bash: line 1: ...-s9fes-20181205/bin/s9help: No such file or directory
|
|
# make: *** [Makefile:157: install-util] Error 1
|
|
enableParallelInstalling = false;
|
|
|
|
meta = with lib; {
|
|
description = "Scheme 9 From Empty Space, an interpreter for R4RS Scheme";
|
|
homepage = "http://www.t3x.org/s9fes/index.html";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|