depot/third_party/nixpkgs/pkgs/development/tools/rust/specr-transpile/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

23 lines
554 B
Nix

{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "specr-transpile";
version = "0.1.20";
src = fetchCrate {
inherit pname version;
hash = "sha256-HXqUp80vPFwG0B+f/Zfem0gOHF/igmtxTvS1c8amLmo=";
};
cargoHash = "sha256-UCIXuVwMDCJkHQJtmRUw6EiGDYCF5DeUVxBrQM4lgxg=";
meta = with lib; {
description = "Converts Specr lang code to Rust";
homepage = "https://github.com/RalfJung/minirust-tooling";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda ];
};
}