diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 85d08d1b1ce8..37e51bb1f40f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -29867,6 +29867,11 @@ githubId = 7038383; name = "Vojta Káně"; }; + vokinn = { + github = "vokinn"; + githubId = 113241287; + name = "vokin"; + }; volfyd = { email = "lb.nix@lisbethmail.com"; github = "volfyd"; diff --git a/pkgs/by-name/pe/pesde/package.nix b/pkgs/by-name/pe/pesde/package.nix new file mode 100644 index 000000000000..8a40ec39b732 --- /dev/null +++ b/pkgs/by-name/pe/pesde/package.nix @@ -0,0 +1,38 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + pkg-config, + openssl, + dbus, +}: + +rustPlatform.buildRustPackage { + pname = "pesde"; + version = "0.7.3"; + __structuredAttrs = true; + + src = fetchFromGitHub { + owner = "pesde-pkg"; + repo = "pesde"; + rev = "e57b4c2db9eaf295c8af998212f427ea039ed46e"; + hash = "sha256-+8SneWw3UQwXg1IV1zn0OM1ySAJpcvMqyoQd7eYAarE="; + }; + + cargoHash = "sha256-1k7bmH4ocF9JK15C7YonCmwDKVh639Nropuzm62roDA="; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ + openssl + dbus + ]; + buildFeatures = [ "bin" ]; + + meta = { + description = "Package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune."; + homepage = "https://github.com/pesde-pkg/pesde"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ vokinn ]; + mainProgram = "pesde"; + }; +}