evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / on / ondir / package.nix
blob0bcffd5ade71206621c434cec85979c8e52f4f24
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation {
8   pname = "ondir";
9   version = "0.2.3";
11   src = fetchFromGitHub {
12     owner = "alecthomas";
13     repo = "ondir";
14     rev = "cb2f9f8b21e336165fc0a310d677fda75c8e8513";
15     hash = "sha256-XTZKFIzJ3xL8ae3zG8nsMhGWvpvRUAQ2b6q/Q1QvGd0=";
16   };
18   installPhase = ''
19   runHook preInstall
21   make DESTDIR="$out" PREFIX= install
22   cp scripts.* $out
24   runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Small program to automate tasks specific to certain directories";
29     longDescription = ''
30     It works by executing scripts in directories when you enter and leave them.
31     This is done by overriding the shell builtins cd, pushd, and popd,
32      which is a manual action.
33     The user is required to add a snippet to their shell initialisation file like .bashrc or .profile.
35     Which commands are executed on directory entry and leave is done
36      in predefined locations with a .ondirrc file.
38     See man ondir for more information
39     '';
40     homepage = "https://github.com/alecthomas/ondir/";
41     license = licenses.gpl2Only;
42     maintainers = [ maintainers.michaelCTS ];
43     mainProgram = "ondir";
44   };