tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
huniq: init at 2.7.0
figsoda
3 years ago
0feab35a
ab729044
+22
2 changed files
expand all
collapse all
unified
split
pkgs
tools
text
huniq
default.nix
top-level
all-packages.nix
+20
pkgs/tools/text/huniq/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib, rustPlatform, fetchCrate }:
2
+
3
+
rustPlatform.buildRustPackage rec {
4
+
pname = "huniq";
5
+
version = "2.7.0";
6
+
7
+
src = fetchCrate {
8
+
inherit pname version;
9
+
sha256 = "sha256-5GvHM05qY/Jj1mPYwn88Zybn6Nn5nJIaw0XP8iCcrwE=";
10
+
};
11
+
12
+
cargoSha256 = "sha256-pwDaLHJbVpZe7dAtd5/ytyHZkUHjCcNjtw3q7HF1qVQ=";
13
+
14
+
meta = with lib; {
15
+
description = "Command line utility to remove duplicates from the given input";
16
+
homepage = "https://github.com/koraa/huniq";
17
+
license = licenses.bsd3;
18
+
maintainers = with maintainers; [ figsoda ];
19
+
};
20
+
}
+2
pkgs/top-level/all-packages.nix
···
4127
4128
humioctl = callPackage ../applications/logging/humioctl {};
4129
0
0
4130
hyprland = callPackage ../applications/window-managers/hyprland {
4131
wlroots = wlroots.overrideAttrs (_: {
4132
version = "unstable-2022-06-07";
···
4127
4128
humioctl = callPackage ../applications/logging/humioctl {};
4129
4130
+
huniq = callPackage ../tools/text/huniq { };
4131
+
4132
hyprland = callPackage ../applications/window-managers/hyprland {
4133
wlroots = wlroots.overrideAttrs (_: {
4134
version = "unstable-2022-06-07";