huniq: init at 2.7.0

This commit is contained in:
figsoda 2022-09-25 14:34:29 -04:00
parent ab72904494
commit 0feab35a17
2 changed files with 22 additions and 0 deletions

View 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 ];
};
}

View file

@ -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";