mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
66 lines
1.7 KiB
Nix
66 lines
1.7 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.nix-ld;
|
|
|
|
nix-ld-libraries = pkgs.buildEnv {
|
|
name = "ld-library-path";
|
|
pathsToLink = [ "/lib" ];
|
|
paths = map lib.getLib cfg.libraries;
|
|
# TODO make glibc here configurable?
|
|
postBuild = ''
|
|
ln -s ${pkgs.stdenv.cc.bintools.dynamicLinker} $out/share/nix-ld/lib/ld.so
|
|
'';
|
|
extraPrefix = "/share/nix-ld";
|
|
ignoreCollisions = true;
|
|
};
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.mic92 ];
|
|
options.programs.nix-ld = {
|
|
enable = lib.mkEnableOption ''nix-ld, Documentation: <https://github.com/Mic92/nix-ld>'';
|
|
package = lib.mkPackageOption pkgs "nix-ld" { };
|
|
libraries = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
description = "Libraries that automatically become available to all programs. The default set includes common libraries.";
|
|
default = [ ];
|
|
defaultText = lib.literalExpression "baseLibraries derived from systemd and nix dependencies.";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.programs.nix-ld.enable {
|
|
environment.ldso = "${cfg.package}/libexec/nix-ld";
|
|
|
|
environment.systemPackages = [ nix-ld-libraries ];
|
|
|
|
environment.pathsToLink = [ "/share/nix-ld" ];
|
|
|
|
environment.sessionVariables = {
|
|
NIX_LD = "/run/current-system/sw/share/nix-ld/lib/ld.so";
|
|
NIX_LD_LIBRARY_PATH = "/run/current-system/sw/share/nix-ld/lib";
|
|
};
|
|
|
|
# We currently take all libraries from systemd and nix as the default.
|
|
# Is there a better list?
|
|
programs.nix-ld.libraries = with pkgs; [
|
|
zlib
|
|
zstd
|
|
stdenv.cc.cc
|
|
curl
|
|
openssl
|
|
attr
|
|
libssh
|
|
bzip2
|
|
libxml2
|
|
acl
|
|
libsodium
|
|
util-linux
|
|
xz
|
|
systemd
|
|
];
|
|
};
|
|
}
|