1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 17:46:29 +09:00

nixos/nix-ld: update source repository

This project was transferred from @Mic92 to @nix-community.
This commit is contained in:
João Nogueira 2025-04-17 00:46:00 +02:00
parent e5bf9b83fc
commit bf35e5f293
No known key found for this signature in database
GPG key ID: 6F547B6BD44BC484
2 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ in
{ {
meta.maintainers = [ lib.maintainers.mic92 ]; meta.maintainers = [ lib.maintainers.mic92 ];
options.programs.nix-ld = { options.programs.nix-ld = {
enable = lib.mkEnableOption ''nix-ld, Documentation: <https://github.com/Mic92/nix-ld>''; enable = lib.mkEnableOption ''nix-ld, Documentation: <https://github.com/nix-community/nix-ld>'';
package = lib.mkPackageOption pkgs "nix-ld" { }; package = lib.mkPackageOption pkgs "nix-ld" { };
libraries = lib.mkOption { libraries = lib.mkOption {
type = lib.types.listOf lib.types.package; type = lib.types.listOf lib.types.package;

View file

@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
version = "2.0.3"; version = "2.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mic92"; owner = "nix-community";
repo = "nix-ld"; repo = "nix-ld";
rev = version; rev = version;
hash = "sha256-NRkLjdMtVfC6dD1gEbYZWFEtbmC2xfD6ft1IP7l76Vw="; hash = "sha256-NRkLjdMtVfC6dD1gEbYZWFEtbmC2xfD6ft1IP7l76Vw=";
@ -49,7 +49,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "Run unpatched dynamic binaries on NixOS"; description = "Run unpatched dynamic binaries on NixOS";
homepage = "https://github.com/Mic92/nix-ld"; homepage = "https://github.com/nix-community/nix-ld";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ mic92 ]; maintainers = with maintainers; [ mic92 ];
platforms = platforms.linux; platforms = platforms.linux;