nixpkgs/pkgs/by-name/zs/zsh-autoenv/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

42 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, runtimeShell }:
stdenv.mkDerivation {
pname = "zsh-autoenv";
version = "unstable-2017-12-16";
src = fetchFromGitHub {
owner = "Tarrasch";
repo = "zsh-autoenv";
rev = "2c8cfbcea8e7286649840d7ec98d7e9d5e1d45a0";
sha256 = "004svkfzhc3ab6q2qvwzgj36wvicg5bs8d2gcibx6adq042di7zj";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/{bin,share}
cp -R $src $out/share/zsh-autoenv
cat <<SCRIPT > $out/bin/zsh-autoenv-share
#!${runtimeShell}
# Run this script to find the zsh-autoenv shared folder where all the shell
# integration scripts are living.
echo $out/share/zsh-autoenv
SCRIPT
chmod +x $out/bin/zsh-autoenv-share
'';
meta = with lib; {
description = "Automatically sources whitelisted .autoenv.zsh files";
longDescription = ''
zsh-autoenv automatically sources (known/whitelisted)
.autoenv.zsh files, typically used in project root directories.
It handles "enter" and "leave" events, nesting, and stashing of
variables (overwriting and restoring).
'';
homepage = "https://github.com/Tarrasch/zsh-autoenv";
mainProgram = "zsh-autoenv-share";
platforms = lib.platforms.all;
};
}