at 24.05-pre 29 lines 754 B view raw
1{ lib 2, buildNpmPackage 3, fetchFromGitHub 4}: 5 6buildNpmPackage rec { 7 pname = "titanium"; 8 version = "6.1.1"; 9 10 src = fetchFromGitHub { 11 owner = "tidev"; 12 repo = "titanium-cli"; 13 rev = "v${version}"; 14 hash = "sha256-eJHf4vbapCaIVk0Xc0sml14jkFCsS/Gv7ftaFakB5rI="; 15 }; 16 17 npmDepsHash = "sha256-60r+zqUCSDvQgrjg5SGfZiv87AoGx1XcnbW1ki1sbCM="; 18 19 dontNpmBuild = true; 20 21 meta = { 22 changelog = "https://github.com/tidev/titanium-cli/blob/${src.rev}/CHANGELOG.md"; 23 description = "Command Line Tool for creating and building Titanium Mobile applications and modules"; 24 homepage = "https://github.com/tidev/titanium-cli"; 25 license = lib.licenses.asl20; 26 mainProgram = "titanium"; 27 maintainers = with lib.maintainers; [ ]; 28 }; 29}