configuration/packages/fastnbt-tools.nix
2022-12-20 17:46:15 -08:00

22 lines
466 B
Nix

{ fetchCrate
, lib
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "fastnbt-tools";
version = "0.25.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-SLymYrvIgtGmE82tXxUf/6pO75xflkmoatB50nXx5yQ=";
};
cargoHash = "sha256-o41gp5WBH/rUROTqMAGiLKiAP5WAPrAs2CYJeDjKJRM=";
meta = {
description = "tools built with fastnbt";
homepage = "https://github.com/owengage/fastnbt";
license = lib.licenses.mit;
};
}