nixpkgs/pkgs/tools/text/huniq/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

22 lines
573 B
Nix

{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "huniq";
version = "2.7.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-5GvHM05qY/Jj1mPYwn88Zybn6Nn5nJIaw0XP8iCcrwE=";
};
cargoSha256 = "sha256-pwDaLHJbVpZe7dAtd5/ytyHZkUHjCcNjtw3q7HF1qVQ=";
meta = with lib; {
description = "Command line utility to remove duplicates from the given input";
mainProgram = "huniq";
homepage = "https://github.com/koraa/huniq";
license = licenses.bsd3;
maintainers = with maintainers; [ figsoda ];
};
}