python3Packages.instructor: 1.6.4 -> 1.72 (#378975)
[NixPkgs.git] / pkgs / by-name / hu / huniq / package.nix
blob6118aae67e097616bfdf0e5823d22517ea7a5c99
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "huniq";
9   version = "2.7.0";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-5GvHM05qY/Jj1mPYwn88Zybn6Nn5nJIaw0XP8iCcrwE=";
14   };
16   cargoHash = "sha256-pwDaLHJbVpZe7dAtd5/ytyHZkUHjCcNjtw3q7HF1qVQ=";
18   meta = with lib; {
19     description = "Command line utility to remove duplicates from the given input";
20     mainProgram = "huniq";
21     homepage = "https://github.com/koraa/huniq";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ figsoda ];
24   };