Files
t-packs/com/github/ksdme/ut/package.nix
2025-10-09 17:41:57 +08:00

26 lines
645 B
Nix

{
rustPlatform,
fetchFromGitHub,
lib,
...
}:
rustPlatform.buildRustPackage rec {
pname = "ut";
version = "0.2.0";
src = fetchFromGitHub {
owner = "ksdme";
repo = "ut";
tag = "v${version}";
hash = "sha256-+dKDLBgmwhc9LnXTDgtqGxcFxgu4cdkauY6X5FpE3+8=";
};
cargoHash = "sha256-DCYQ69IuOge2GB5LkmDkpIdw0QHhNUfojQpFNDGW2ro=";
meta = with lib; {
description = "A Rust based utilty toolbox for developers. Inspired from https://it-tools.tech";
homepage = "https://github.com/ksdme/ut";
license = licenses.mit;
platforms = platforms.all;
};
}