Merge pull request #246468 from figsoda/specr

This commit is contained in:
figsoda 2023-08-02 10:12:14 -04:00 committed by GitHub
commit 56c6754a7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ 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 ];
};
}

View file

@ -17083,6 +17083,7 @@ with pkgs;
};
rusty-man = callPackage ../development/tools/rust/rusty-man { };
rustycli = callPackage ../development/tools/rust/rustycli { };
specr-transpile = callPackage ../development/tools/rust/specr-transpile { };
typeshare = callPackage ../development/tools/rust/typeshare { };
sagittarius-scheme = callPackage ../development/compilers/sagittarius-scheme { };