mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
27 lines
681 B
Nix
27 lines
681 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "turtle-build";
|
|
version = "0.4.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "raviqqe";
|
|
repo = "turtle-build";
|
|
rev = "v${version}";
|
|
hash = "sha256-PDpiLPMyBZzj2nBy76cSC4ab/kyaoZC/Gd2HSaRVHUM=";
|
|
};
|
|
|
|
cargoHash = "sha256-Z9PCnFrUgvF9anfShfU9U7iYISDpzAuJudLq/wN4ONU=";
|
|
|
|
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";
|
|
};
|
|
}
|