remodel: init at 0.10.0
This commit is contained in:
parent
79b472a984
commit
bb0c489414
44
pkgs/development/tools/remodel/default.nix
Normal file
44
pkgs/development/tools/remodel/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, pkg-config
|
||||
, openssl
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "remodel";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rojo-rbx";
|
||||
repo = "remodel";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-bUwTryGc4Y614nXKToPXp5KZqO12MmtdT3FUST4OvQY=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-b9+eV2co4hcKLZxJRqDIX2U0O25Ba5UHQiNpfjE4fN4=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Roblox file manipulation tool";
|
||||
longDescription = ''
|
||||
Remodel is a command line tool for manipulating Roblox files and the instances contained within them.
|
||||
'';
|
||||
homepage = "https://github.com/rojo-rbx/remodel";
|
||||
downloadPage = "https://github.com/rojo-rbx/remodel/releases/tag/v${version}";
|
||||
changelog = "https://github.com/rojo-rbx/remodel/raw/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ wackbyte ];
|
||||
};
|
||||
}
|
@ -20768,6 +20768,10 @@ with pkgs;
|
||||
|
||||
randomx = callPackage ../development/libraries/randomx { };
|
||||
|
||||
remodel = callPackage ../development/tools/remodel {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
retro-gtk = callPackage ../development/libraries/retro-gtk { };
|
||||
|
||||
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
|
||||
|
Loading…
Reference in New Issue
Block a user