direnv-cache/default.nix

14 lines
277 B
Nix
Raw Normal View History

2019-12-03 20:43:28 +01:00
{ stdenv, direnv, term-test }:
stdenv.mkDerivation {
name = "direnv-cache";
src = ./.;
propagatedBuildInputs = [ direnv ];
installPhase = ''
make install PREFIX=$out
'';
checkInputs = [ term-test ];
doCheck = true;
passthru = { direnvrc = ./direnvrc; };
}