mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
autoenv: init at 2024-10-16
Signed-off-by: Borja Clemente <borja.clemente@gmail.com>
This commit is contained in:
parent
e2e4131e98
commit
20cf89b1df
2 changed files with 67 additions and 0 deletions
32
nixos/modules/programs/autoenv.nix
Normal file
32
nixos/modules/programs/autoenv.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.programs.autoenv;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
programs.autoenv = {
|
||||
enable = lib.mkEnableOption "autoenv";
|
||||
package = lib.mkPackageOption pkgs "autoenv" { };
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [ pkgs.autoenv ];
|
||||
|
||||
programs = {
|
||||
zsh.interactiveShellInit = ''
|
||||
source ${cfg.package}/share/autoenv/activate.sh
|
||||
'';
|
||||
|
||||
bash.interactiveShellInit = ''
|
||||
source ${cfg.package}/share/autoenv/activate.sh
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
35
pkgs/by-name/au/autoenv/package.nix
Normal file
35
pkgs/by-name/au/autoenv/package.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "autoenv";
|
||||
version = "0-unstable-2024-10-16";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hyperupcall";
|
||||
repo = "autoenv";
|
||||
rev = "90241f182d6a7c96e9de8a25c1eccaf2a2d1b43a";
|
||||
hash = "sha256-vZrsMPhuu+xPVAww04nKyoOl7k0upvpIaxeMrCikDio=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/share
|
||||
cp -R $src $out/share/autoenv
|
||||
chmod +x $out/share/autoenv
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Per-directory shell environments sourced from .env file";
|
||||
homepage = "https://github.com/hyperupcall/autoenv";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [ clebs ];
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue