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.
29 lines
790 B
Nix
29 lines
790 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nix-zsh-completions";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = "nix-zsh-completions";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-bgbMc4HqigqgdkvUe/CWbUclwxpl17ESLzCIP8Sz+F8=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
installPhase = ''
|
|
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
|
|
cp _* $out/share/zsh/site-functions
|
|
cp *.zsh $out/share/zsh/plugins/nix
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nix-community/nix-zsh-completions";
|
|
description = "ZSH completions for Nix, NixOS, and NixOps";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ olejorgenb hedning ma27 sebtm ];
|
|
};
|
|
}
|