Merge pull request #192922 from figsoda/huniq

huniq: init at 2.7.0
This commit is contained in:
figsoda 2022-09-26 15:23:29 -04:00 committed by GitHub
commit f69d49e5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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