biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / turtle-build / default.nix
blobe1fbd6bf12616a827d49663a8c3e28de9f2bf1ba
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "turtle-build";
8   version = "0.4.8";
10   src = fetchFromGitHub {
11     owner = "raviqqe";
12     repo = "turtle-build";
13     rev = "v${version}";
14     hash = "sha256-PDpiLPMyBZzj2nBy76cSC4ab/kyaoZC/Gd2HSaRVHUM=";
15   };
17   cargoHash = "sha256-Z9PCnFrUgvF9anfShfU9U7iYISDpzAuJudLq/wN4ONU=";
19   meta = with lib; {
20     description = "Ninja-compatible build system for high-level programming languages written in Rust";
21     homepage = "https://github.com/raviqqe/turtle-build";
22     license = with licenses; [ asl20 mit ];
23     maintainers = with maintainers; [ figsoda ];
24     mainProgram = "turtle";
25   };