26 lines
645 B
Nix
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;
|
|
};
|
|
} |