Skip to content

nix-ld: restore module #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
};
};

nixosModules.nix-ld = import ./modules/nix-ld.nix {};

devShells.default = pkgs.mkShell ({
nativeBuildInputs = [
pkgs.rustc
Expand Down
77 changes: 77 additions & 0 deletions modules/nix-ld.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{ pkgs, lib, config, ... }:
let
cfg = config.programs.nix-ld.dev;

nix-ld-libraries = pkgs.buildEnv {
name = "lb-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;
};

# We currently take all libraries from systemd and nix as the default.
# Is there a better list?
baseLibraries = with pkgs; [
zlib
zstd
stdenv.cc.cc
curl
openssl
attr
libssh
bzip2
libxml2
acl
libsodium
util-linux
xz
systemd
];
in
{
meta.maintainers = [ lib.maintainers.mic92 ];


options.programs.nix-ld.dev = {
enable = lib.mkEnableOption (lib.mdDoc ''nix-ld, Documentation: <https://github.com/Mic92/nix-ld>'') // {
default = true;
};
package = lib.mkOption {
type = lib.types.package;
description = lib.mdDoc "The package to be used for nix-ld.";
default = pkgs.callPackage ../package.nix {};
};
libraries = lib.mkOption {
type = lib.types.listOf lib.types.package;
description = lib.mdDoc "Libraries that automatically become available to all programs. The default set includes common libraries.";
default = baseLibraries;
defaultText = lib.literalExpression "baseLibraries derived from systemd and nix dependencies.";
};
};

config = lib.mkIf config.programs.nix-ld.dev.enable {
assertions = [{
assertion = !config.programs.nix-ld.enable;
message = ''
nix-ld.dev cannot be enabled at the same time as nix-ld.
'';
}];

systemd.tmpfiles.packages = [ cfg.package ];

environment.systemPackages = [ nix-ld-libraries ];

environment.pathsToLink = [ "/share/nix-ld" ];

environment.variables = {
NIX_LD = "/run/current-system/sw/share/nix-ld/lib/ld.so";
NIX_LD_LIBRARY_PATH = "/run/current-system/sw/share/nix-ld/lib";
};
};
}