mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
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.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, darwin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.11";
|
|
pname = "chibi-scheme";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ashinn";
|
|
repo = "chibi-scheme";
|
|
rev = version;
|
|
sha256 = "sha256-i+xiaYwM7a+0T824VSuh7UUNI6HV9KpqzQPE1WAZ+As=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.libutil;
|
|
|
|
installPhase = ''
|
|
make install PREFIX="$out"
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
wrapProgram "$out/bin/chibi-scheme" \
|
|
--prefix CHIBI_MODULE_PATH : "$out/share/chibi:$out/lib/chibi" \
|
|
${lib.optionalString stdenv.hostPlatform.isDarwin "--prefix DYLD_LIBRARY_PATH : $out/lib"}
|
|
|
|
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
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|