nix-direnv/default.nix
Jörg Thalheim 862b772839
add tests
2020-04-01 16:12:48 +01:00

26 lines
646 B
Nix

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