nixpkgs/pkgs/by-name/z-/z-lua/package.nix

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

39 lines
1021 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, lua52Packages, makeWrapper }:
2019-01-17 05:51:39 +00:00
stdenv.mkDerivation rec {
pname = "z-lua";
2024-10-14 07:17:12 +01:00
version = "1.8.19";
2019-01-17 05:51:39 +00:00
src = fetchFromGitHub {
owner = "skywind3000";
repo = "z.lua";
2020-03-22 09:20:00 +00:00
rev = version;
2024-10-14 07:17:12 +01:00
sha256 = "sha256-XGDnEKyuvoDzaJINV8ePafKfePc3fYP6vQMqtH1yo4k=";
2019-01-17 05:51:39 +00:00
};
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ lua52Packages.lua ];
2019-01-17 05:51:39 +00:00
installPhase = ''
runHook preInstall
install -Dm755 z.lua $out/bin/z.lua
wrapProgram $out/bin/z.lua --set LUA_CPATH "${lua52Packages.luafilesystem}/lib/lua/5.2/lfs.so" --set _ZL_USE_LFS 1;
# Create symlink for backwards compatibility. See: https://github.com/NixOS/nixpkgs/pull/96081
ln -s $out/bin/z.lua $out/bin/z
runHook postInstall
2019-01-17 05:51:39 +00:00
'';
meta = with lib; {
2020-03-22 09:20:00 +00:00
homepage = "https://github.com/skywind3000/z.lua";
2019-01-17 05:51:39 +00:00
description = "New cd command that helps you navigate faster by learning your habits";
license = licenses.mit;
maintainers = [ ];
2021-10-21 14:12:30 +01:00
mainProgram = "z.lua";
2019-01-17 05:51:39 +00:00
};
}