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

display3d: init at 0.1.17 #365657

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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 @@ -18935,6 +18935,12 @@
githubId = 93167100;
keys = [ { fingerprint = "9075 CEF8 9850 D261 6599 641A A2C9 36D5 B88C 139C"; } ];
};
renpenguin = {
renpenguin marked this conversation as resolved.
Show resolved Hide resolved
email = "[email protected]";
github = "renpenguin";
githubId = 79577742;
name = "ren";
};
renzo = {
email = "[email protected]";
github = "k0001";
Expand Down
25 changes: 25 additions & 0 deletions pkgs/by-name/di/display3d/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
lib,
rustPlatform,
fetchCrate,
}:

rustPlatform.buildRustPackage rec {
pname = "display3d";
version = "0.1.17";

src = fetchCrate {
renpenguin marked this conversation as resolved.
Show resolved Hide resolved
inherit pname version;
hash = "sha256-H5mynKJ6LY1+Izl9JfQQnStdDr1Z2TlA2r7XAXNNgpA=";
};

cargoHash = "sha256-vqjNgQ4xYduI3BczPnpNqFxNWkQhdBsCdLLAUIjxHic=";

meta = {
renpenguin marked this conversation as resolved.
Show resolved Hide resolved
description = "CLI for rendering and animating 3D objects";
homepage = "https://github.com/renpenguin/display3d";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ renpenguin ];
mainProgram = "display3d";
};
}
Loading