3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/runiq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
550 B
Nix
Raw Normal View History

2021-08-25 22:12:29 +01:00
{ fetchCrate, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "runiq";
2022-04-09 20:28:02 +01:00
version = "1.2.2";
2021-08-25 22:12:29 +01:00
src = fetchCrate {
inherit pname version;
2022-04-09 20:28:02 +01:00
sha256 = "sha256-WPQgTQICZ0DFr+7D99UGMx+I78376IC6iIJ3tCsj0Js=";
2021-08-25 22:12:29 +01:00
};
2022-04-09 20:28:02 +01:00
cargoSha256 = "sha256-QKtrd690eoPXyd5CQg5/yAiTDk297y60XaUdoeFAe0c=";
2021-08-25 22:12:29 +01:00
meta = with lib; {
description = "An efficient way to filter duplicate lines from input, à la uniq";
homepage = "https://github.com/whitfin/runiq";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}