Unverified Commit 8e43b7d6 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

chibi: pass out dir when calling make (#422313)

parents fb6bf490 17fc04ce
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -18,9 +18,9 @@ stdenv.mkDerivation rec {

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    make install PREFIX="$out"
  '';
  makeFlags = [
    "PREFIX=${placeholder "out"}"
  ];

  fixupPhase = ''
    wrapProgram "$out/bin/chibi-scheme" \
@@ -38,6 +38,9 @@ stdenv.mkDerivation rec {
    description = "Small Footprint Scheme for use as a C Extension Language";
    platforms = lib.platforms.all;
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.DerGuteMoritz ];
    maintainers = with lib.maintainers; [
      applePrincess
      DerGuteMoritz
    ];
  };
}