tarmac: init at 0.7.0

This commit is contained in:
wackbyte 2022-07-16 15:19:55 -04:00
parent 7b7588edb1
commit 65c34b12c2
No known key found for this signature in database
GPG key ID: 937F2AE5CCEFBF59
2 changed files with 49 additions and 0 deletions

View 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 ];
};
}

View file

@ -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; };