nixpkgs/pkgs/development/interpreters/chibi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper }:
2014-09-04 13:48:49 +00:00
2022-03-01 10:39:32 +00:00
stdenv.mkDerivation rec {
version = "0.10";
pname = "chibi-scheme";
2014-09-04 13:48:49 +00:00
src = fetchFromGitHub {
owner = "ashinn";
repo = "chibi-scheme";
rev = version;
2021-05-11 08:21:45 +00:00
sha256 = "sha256-7vDxcnXhq1wJSLFHGxtwh+H+KWxh6B0JXSMPzSmQFXo=";
2014-09-04 13:48:49 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2014-09-04 13:48:49 +00:00
installPhase = ''
make install PREFIX="$out"
'';
fixupPhase = ''
wrapProgram "$out/bin/chibi-scheme" \
2022-12-29 05:34:22 +00:00
--prefix CHIBI_MODULE_PATH : "$out/share/chibi:$out/lib/chibi" \
${lib.optionalString stdenv.isDarwin "--prefix DYLD_LIBRARY_PATH : $out/lib"}
2014-09-04 13:48:49 +00:00
for f in chibi-doc chibi-ffi snow-chibi; do
substituteInPlace "$out/bin/$f" \
--replace "/usr/bin/env chibi-scheme" "$out/bin/chibi-scheme"
done
'';
2022-03-01 10:39:32 +00:00
meta = {
homepage = "https://github.com/ashinn/chibi-scheme";
description = "Small Footprint Scheme for use as a C Extension Language";
platforms = lib.platforms.all;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.DerGuteMoritz ];
};
2014-09-04 13:48:49 +00:00
}