mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +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.
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenvNoCC, lib, fetchFromGitHub, installShellFiles }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "zinit";
|
|
version = "3.13.1";
|
|
src = fetchFromGitHub {
|
|
owner = "zdharma-continuum";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-fnBV0LmC/wJm0pOITJ1mhiBqsg2F8AQJWvn0p/Bgo5Q=";
|
|
};
|
|
# adapted from https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=zsh-zplugin-git
|
|
dontBuild = true;
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
installPhase = ''
|
|
outdir="$out/share/$pname"
|
|
|
|
cd "$src"
|
|
|
|
# Zplugin's source files
|
|
install -dm0755 "$outdir"
|
|
# Installing backward compatibility layer
|
|
install -m0644 zinit{,-side,-install,-autoload}.zsh "$outdir"
|
|
install -m0755 share/git-process-output.zsh "$outdir"
|
|
|
|
installManPage doc/zinit.1
|
|
|
|
# Zplugin autocompletion
|
|
installShellCompletion --zsh _zinit
|
|
|
|
#TODO:Zplugin-module files
|
|
# find zmodules/ -type d -exec install -dm 755 "{}" "$outdir/{}" \;
|
|
# find zmodules/ -type f -exec install -m 744 "{}" "$outdir/{}" \;
|
|
|
|
'';
|
|
postInstall = ''
|
|
installManPage doc/zinit.1
|
|
'';
|
|
#TODO:doc output
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/zdharma-continuum/zinit";
|
|
description = "Flexible zsh plugin manager";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pasqui23 sei40kr ];
|
|
};
|
|
}
|