mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
21 lines
569 B
Nix
21 lines
569 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "huniq";
|
|
version = "2.7.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-5GvHM05qY/Jj1mPYwn88Zybn6Nn5nJIaw0XP8iCcrwE=";
|
|
};
|
|
|
|
cargoHash = "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 ];
|
|
};
|
|
}
|