nix-ld: remove meta = with lib; ...

https://github.com/NixOS/nixpkgs/issues/371862
This commit is contained in:
João Nogueira
2025-04-17 01:18:29 +02:00
parent 1c8f173ccd
commit 5bd2fcc4c7
+4 -4
View File
@@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec {
passthru.tests = nixosTests.nix-ld;
meta = with lib; {
meta = {
description = "Run unpatched dynamic binaries on NixOS";
homepage = "https://github.com/nix-community/nix-ld";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mic92 ];
platforms = lib.platforms.linux;
};
}