Merge pull request #240837 from figsoda/protox

protox: init at 0.4.1
This commit is contained in:
Pol Dellaiera 2023-07-01 23:14:48 +02:00 committed by GitHub
commit ec10b40e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "protox";
version = "0.4.1";
src = fetchCrate {
inherit pname version;
hash = "sha256-n72Fvdo6LLk8pzYS2/5zk+dbsLRPAm6NZ5DsMRyHCTY=";
};
cargoHash = "sha256-wW4UcC3QAtriLEiXPndP+tZATftWP7ySavpIV6cGVCA=";
buildFeatures = [ "bin" ];
# tests are not included in the crate source
doCheck = false;
meta = with lib; {
description = "A rust implementation of the protobuf compiler";
homepage = "https://github.com/andrewhickman/protox";
changelog = "https://github.com/andrewhickman/protox/blob/${version}/CHANGELOG.md";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -19369,6 +19369,8 @@ with pkgs;
procodile = callPackage ../tools/system/procodile { };
protox = callPackage ../development/tools/misc/protox { };
proxmove = callPackage ../tools/admin/proxmove { };
pry = callPackage ../development/tools/pry { };