python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / zsh-autoenv / default.nix
blobd16410c315385212d70ac3031d8b00c0ab97b110
1 { lib, stdenv, fetchFromGitHub, runtimeShell }:
3 stdenv.mkDerivation {
4   pname = "zsh-autoenv";
5   version = "unstable-2017-12-16";
7   src = fetchFromGitHub {
8     owner = "Tarrasch";
9     repo = "zsh-autoenv";
10     rev = "2c8cfbcea8e7286649840d7ec98d7e9d5e1d45a0";
11     sha256 = "004svkfzhc3ab6q2qvwzgj36wvicg5bs8d2gcibx6adq042di7zj";
12   };
14   dontBuild = true;
16   installPhase = ''
17     mkdir -p $out/{bin,share}
18     cp -R $src $out/share/zsh-autoenv
20     cat <<SCRIPT > $out/bin/zsh-autoenv-share
21     #!${runtimeShell}
22     # Run this script to find the zsh-autoenv shared folder where all the shell
23     # integration scripts are living.
24     echo $out/share/zsh-autoenv
25     SCRIPT
26     chmod +x $out/bin/zsh-autoenv-share
27   '';
29   meta = with lib; {
30     description = "Automatically sources whitelisted .autoenv.zsh files";
31     longDescription = ''
32       zsh-autoenv automatically sources (known/whitelisted)
33       .autoenv.zsh files, typically used in project root directories.
34       It handles "enter" and "leave" events, nesting, and stashing of
35       variables (overwriting and restoring).
36     '';
37     homepage = "https://github.com/Tarrasch/zsh-autoenv";
38     mainProgram = "zsh-autoenv-share";
39     platforms = lib.platforms.all;
40   };