commit
f69d49e5b3
2 changed files with 22 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -4132,6 +4132,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 a new issue