commit
3bfac2f6c9
2 changed files with 49 additions and 0 deletions
45
pkgs/development/tools/tarmac/default.nix
Normal file
45
pkgs/development/tools/tarmac/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, pkg-config
|
||||
, openssl_1_1
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tarmac";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Roblox";
|
||||
repo = "tarmac";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-O6qrAzGiAxiE56kpuvH/jDKHRXxHZ2SlDL5nwOOd4EU=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-QnpowYv/TBXjPHK8z6KAzN3gSsfNOf9POybqsyugeWc=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl_1_1
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Resource compiler and asset manager for Roblox";
|
||||
longDescription = ''
|
||||
Tarmac is a resource compiler and asset manager for Roblox projects.
|
||||
It helps enable hermetic place builds when used with tools like Rojo.
|
||||
'';
|
||||
homepage = "https://github.com/Roblox/tarmac";
|
||||
downloadPage = "https://github.com/Roblox/tarmac/releases/tag/v${version}";
|
||||
changelog = "https://github.com/Roblox/tarmac/raw/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ wackbyte ];
|
||||
};
|
||||
}
|
|
@ -18097,6 +18097,10 @@ with pkgs;
|
|||
|
||||
taoup = callPackage ../tools/misc/taoup { };
|
||||
|
||||
tarmac = callPackage ../development/tools/tarmac {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
tcptrack = callPackage ../development/tools/misc/tcptrack { };
|
||||
|
||||
teensyduino = arduino-core.override { withGui = true; withTeensyduino = true; };
|
||||
|
|
Loading…
Reference in a new issue