about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/huniq/default.nix
blob: 3bb1252ae0c69ab297f3d3870ffffdf3779636e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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 ];
  };
}