mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
99 lines
2.5 KiB
Nix
99 lines
2.5 KiB
Nix
{ lib
|
|
, bash
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, findutils
|
|
, gettext
|
|
, gnused
|
|
, inetutils
|
|
, installShellFiles
|
|
, jq
|
|
, less
|
|
, ncurses
|
|
, nixos-option
|
|
, stdenvNoCC
|
|
, unixtools
|
|
, unstableGitUpdater
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "home-manager";
|
|
version = "0-unstable-2024-09-21";
|
|
|
|
src = fetchFromGitHub {
|
|
name = "home-manager-source";
|
|
owner = "nix-community";
|
|
repo = "home-manager";
|
|
rev = "14929f7089268481d86b83ed31ffd88713dcd415";
|
|
hash = "sha256-Gkc7pwTVLKj4HSvRt8tXNvosl8RS9hrBAEhOjAE0Tt4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
installShellFiles
|
|
];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m755 home-manager/home-manager $out/bin/home-manager
|
|
install -D -m755 lib/bash/home-manager.sh $out/share/bash/home-manager.sh
|
|
|
|
installShellCompletion --cmd home-manager \
|
|
--bash home-manager/completion.bash \
|
|
--fish home-manager/completion.fish \
|
|
--zsh home-manager/completion.zsh
|
|
|
|
for pofile in home-manager/po/*.po; do
|
|
lang="''${pofile##*/}"
|
|
lang="''${lang%%.*}"
|
|
mkdir -p "$out/share/locale/$lang/LC_MESSAGES"
|
|
msgfmt -o "$out/share/locale/$lang/LC_MESSAGES/home-manager.mo" "$pofile"
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/bin/home-manager \
|
|
--subst-var-by bash "${bash}" \
|
|
--subst-var-by DEP_PATH "${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
findutils
|
|
gettext
|
|
gnused
|
|
jq
|
|
less
|
|
ncurses
|
|
nixos-option
|
|
inetutils # for `hostname`
|
|
]
|
|
}" \
|
|
--subst-var-by HOME_MANAGER_LIB "$out/share/bash/home-manager.sh" \
|
|
--subst-var-by HOME_MANAGER_PATH "${finalAttrs.src}" \
|
|
--subst-var-by OUT "$out"
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://github.com/nix-community/home-manager/";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://nix-community.github.io/home-manager/";
|
|
description = "Nix-based user environment configurator";
|
|
longDescription = ''
|
|
The Home-Manager project provides a basic system for managing a user
|
|
environment using the Nix package manager together with the Nix libraries
|
|
found in Nixpkgs. It allows declarative configuration of user specific
|
|
(non global) packages and dotfiles.
|
|
'';
|
|
license = lib.licenses.mit;
|
|
mainProgram = "home-manager";
|
|
maintainers = with lib.maintainers; [ AndersonTorres bryango ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|