2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-24 22:04:20 +00:00
nixpkgs/pkgs/development/tools/tarmac/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-16 19:19:55 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
2022-07-16 19:19:55 +00:00
, pkg-config
, openssl
, stdenv
2022-07-16 19:19:55 +00:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "tarmac";
version = "0.7.0";
src = fetchFromGitHub {
owner = "Roblox";
repo = "tarmac";
rev = "v${version}";
sha256 = "sha256-O6qrAzGiAxiE56kpuvH/jDKHRXxHZ2SlDL5nwOOd4EU=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
2022-07-16 19:19:55 +00:00
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
2022-07-16 19:19:55 +00:00
] ++ lib.optionals stdenv.isDarwin [
Security
];
# update Cargo.lock to work with openssl 3
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
2022-07-16 19:19:55 +00:00
meta = with lib; {
description = "Resource compiler and asset manager for Roblox";
mainProgram = "tarmac";
2022-07-16 19:19:55 +00:00
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 ];
};
}