Skip to content
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

cargo-3ds: init at 0.1.3 #367583

Merged
merged 2 commits into from
Jan 3, 2025
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
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12400,6 +12400,12 @@
githubId = 168301;
name = "Victor Engmark";
};
l1npengtul = {
email = "[email protected]";
github = "l1npengtul";
githubId = 35755164;
name = "l1npengtul";
};
l33tname = {
name = "l33tname";
email = "[email protected]";
Expand Down
35 changes: 35 additions & 0 deletions pkgs/by-name/ca/cargo-3ds/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-3ds";
version = "0.1.3";

src = fetchFromGitHub {
l1npengtul marked this conversation as resolved.
Show resolved Hide resolved
owner = "rust3ds";
repo = "cargo-3ds";
tag = "v${version}";
hash = "sha256-G1XSpvE94gcamvyKKzGZgj5QSwkBNbYWYdZ17ScwW90=";
};

cargoHash = "sha256-Gt8TJ6VTvpqtpQuD4WYN45/gccfgnw13sKeMqHboTm8=";

# Integration tests do not run in Nix build environment due to needing to
# create and build Cargo workspaces.
doCheck = false;

passthru.updateScript = nix-update-script { };

meta = {
description = "Cargo command to work with Nintendo 3DS project binaries";
homepage = "https://github.com/rust3ds/cargo-3ds";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ l1npengtul ];
};
}
Loading