nixpkgs/pkgs/tools/text/tuc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
550 B
Nix
Raw Normal View History

2022-08-03 11:36:08 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "tuc";
2023-03-05 05:29:43 +00:00
version = "1.0.0";
2022-08-03 11:36:08 +00:00
src = fetchFromGitHub {
owner = "riquito";
repo = pname;
rev = "v${version}";
2023-03-05 05:29:43 +00:00
sha256 = "sha256-zEWQ1wGpEowVPdlezC/LZhoPGS546nuqREfavo3fbTs=";
2022-08-03 11:36:08 +00:00
};
2023-03-05 05:29:43 +00:00
cargoHash = "sha256-YRw1HxVy1/SOWfareR6rh6M78xFm+Im//klhXGGt95g=";
2022-08-03 11:36:08 +00:00
meta = with lib; {
description = "When cut doesn't cut it";
homepage = "https://github.com/riquito/tuc";
license = licenses.gpl3;
maintainers = with maintainers; [ dit7ya ];
};
}