2022-09-25 18:34:29 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "huniq";
|
|
|
|
version = "2.7.0";
|
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-07-12 18:42:22 +00:00
|
|
|
hash = "sha256-5GvHM05qY/Jj1mPYwn88Zybn6Nn5nJIaw0XP8iCcrwE=";
|
2022-09-25 18:34:29 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 09:04:59 +00:00
|
|
|
cargoHash = "sha256-pwDaLHJbVpZe7dAtd5/ytyHZkUHjCcNjtw3q7HF1qVQ=";
|
2022-09-25 18:34:29 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command line utility to remove duplicates from the given input";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "huniq";
|
2022-09-25 18:34:29 +00:00
|
|
|
homepage = "https://github.com/koraa/huniq";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|