Merge pull request #250466 from figsoda/turtle

This commit is contained in:
figsoda 2023-08-23 16:12:01 -04:00 committed by GitHub
commit 1de0489520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "turtle-build";
version = "0.4.6";
src = fetchFromGitHub {
owner = "raviqqe";
repo = "turtle-build";
rev = "v${version}";
hash = "sha256-7XorSt2LFWYNdvCot+I7Uh6S1mhRbD7PkWkvYdIbjKs=";
};
cargoHash = "sha256-TebXKOgBdf/ZFITQu5OuusytDJKEkGzRD7fLhk1uh8Y=";
meta = with lib; {
description = "Ninja-compatible build system for high-level programming languages written in Rust";
homepage = "https://github.com/raviqqe/turtle-build";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda ];
mainProgram = "turtle";
};
}

View File

@ -41224,6 +41224,8 @@ with pkgs;
tup = callPackage ../development/tools/build-managers/tup { };
turtle-build = callPackage ../development/tools/build-managers/turtle-build { };
tusk = callPackage ../applications/office/tusk { };
trufflehog = callPackage ../tools/security/trufflehog { };