nix-direnv/default.nix

25 lines
584 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
stdenv.mkDerivation {
name = "nix-direnv";
src = ./.;
postPatch = ''
sed -i "2iNIX_BIN_PREFIX=${nixFlakes}/bin/" direnvrc
substituteInPlace direnvrc \
--replace "grep" "${gnugrep}/bin/grep"
'';
installPhase = ''
install -m400 -D direnvrc $out/share/nix-direnv/direnvrc
'';
meta = with lib; {
description = "A fast, persistent use_nix implementation for direnv";
homepage = "https://github.com/nix-community/nix-direnv";
license = licenses.mit;
platforms = platforms.unix;
};
}