biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / specr-transpile / default.nix
blobbb15e8c3fa3f564f791d91fa1efbd5a5522dc68e
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "specr-transpile";
8   version = "0.1.25";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-yB4b7VaZ22zk8jhQijBOWRks22TV19q9IQNlVXyBlss=";
13   };
15   cargoHash = "sha256-pD+Llzt4ekkQgKGidEL6jIbbFpuqjuFTmQM29FtReTY=";
17   meta = with lib; {
18     description = "Converts Specr lang code to Rust";
19     mainProgram = "specr-transpile";
20     homepage = "https://github.com/RalfJung/minirust-tooling";
21     license = with licenses; [ asl20 mit ];
22     maintainers = with maintainers; [ figsoda ];
23   };