python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / nix-direnv / default.nix
blobe4e34d1fb6ea5924d485876a04770693be6f02ae
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , gnugrep
5 , nix
6 , enableFlakes ? null # deprecated
7 }:
8 stdenv.mkDerivation rec {
9   pname = "nix-direnv";
10   version = "2.1.2";
12   src = fetchFromGitHub {
13     owner = "nix-community";
14     repo = "nix-direnv";
15     rev = version;
16     sha256 = "sha256-6UvOnFmohdhFenpEangbLLEdE0PeessRJjiO0mcydWI=";
17   };
19   # Substitute instead of wrapping because the resulting file is
20   # getting sourced, not executed:
21   postPatch = ''
22     sed -i "1a NIX_BIN_PREFIX=${nix}/bin/" direnvrc
23     substituteInPlace direnvrc --replace "grep" "${gnugrep}/bin/grep"
24   '';
26   installPhase = ''
27     runHook preInstall
28     install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
29     runHook postInstall
30   '';
32   meta = with lib; {
33     description = "A fast, persistent use_nix implementation for direnv";
34     homepage    = "https://github.com/nix-community/nix-direnv";
35     license     = licenses.mit;
36     platforms   = platforms.unix;
37     maintainers = with maintainers; [ mic92 bbenne10 ];
38   };