huniq: init at 2.7.0
This commit is contained in:
parent
ab72904494
commit
0feab35a17
20
pkgs/tools/text/huniq/default.nix
Normal file
20
pkgs/tools/text/huniq/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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";
|
||||
homepage = "https://github.com/koraa/huniq";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -4127,6 +4127,8 @@ with pkgs;
|
||||
|
||||
humioctl = callPackage ../applications/logging/humioctl {};
|
||||
|
||||
huniq = callPackage ../tools/text/huniq { };
|
||||
|
||||
hyprland = callPackage ../applications/window-managers/hyprland {
|
||||
wlroots = wlroots.overrideAttrs (_: {
|
||||
version = "unstable-2022-06-07";
|
||||
|
Loading…
Reference in New Issue
Block a user