nixpkgs/pkgs/tools/misc/z-lua/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, lua52Packages, makeWrapper }:
2019-01-17 05:51:39 +00:00
stdenv.mkDerivation rec {
pname = "z-lua";
2022-07-31 08:13:38 +01:00
version = "1.8.16";
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;
2022-07-31 08:13:38 +01:00
sha256 = "sha256-VVJXBVENXlJXVj831Hx4sa7AzGHXpsui6tga9uA6ZnE=";
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 = "A new cd command that helps you navigate faster by learning your habits";
license = licenses.mit;
2021-10-21 14:12:30 +01:00
maintainers = with maintainers; [ marsam ];
mainProgram = "z.lua";
2019-01-17 05:51:39 +00:00
};
}