mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +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.
39 lines
1021 B
Nix
39 lines
1021 B
Nix
{ lib, stdenv, fetchFromGitHub, lua52Packages, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "z-lua";
|
|
version = "1.8.19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skywind3000";
|
|
repo = "z.lua";
|
|
rev = version;
|
|
sha256 = "sha256-XGDnEKyuvoDzaJINV8ePafKfePc3fYP6vQMqtH1yo4k=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ lua52Packages.lua ];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/skywind3000/z.lua";
|
|
description = "New cd command that helps you navigate faster by learning your habits";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "z.lua";
|
|
};
|
|
}
|