Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/lua-5/interpreter.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, readline
, compat ? false
, callPackage
, makeWrapper
, makeBinaryWrapper
, packageOverrides ? (final: prev: {})
, sourceVersion
, hash
Expand Down Expand Up @@ -40,7 +40,7 @@ self = stdenv.mkDerivation rec {
LuaCPathSearchPaths = luaPackages.lib.luaCPathList;
setupHook = luaPackages.lua-setup-hook LuaPathSearchPaths LuaCPathSearchPaths;

nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeBinaryWrapper ];
buildInputs = [ readline ];

inherit patches;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/lua-5/wrapper.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, lua, buildEnv, makeWrapper
{ lib, stdenv, lua, buildEnv, makeBinaryWrapper
, extraLibs ? []
, extraOutputsToInstall ? []
, postBuild ? ""
Expand All @@ -19,7 +19,7 @@ let
extraOutputsToInstall = [ "out" ] ++ extraOutputsToInstall;

nativeBuildInputs = [
makeWrapper
makeBinaryWrapper
(lua.pkgs.lua-setup-hook lua.LuaPathSearchPaths lua.LuaCPathSearchPaths)
];

Expand Down
1 change: 0 additions & 1 deletion pkgs/tools/typesetting/sile/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ stdenv.mkDerivation rec {
homepage = "https://sile-typesetter.org";
changelog = "https://github.com/sile-typesetter/sile/raw/v${version}/CHANGELOG.md";
platforms = platforms.unix;
broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/issues/23018
maintainers = with maintainers; [ doronbehar alerque ];
license = licenses.mit;
};
Expand Down