Merge pull request #135703 from figsoda/runiq

This commit is contained in:
Sandro 2021-08-26 01:18:02 +02:00 committed by GitHub
commit d960a8c60f
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 @@
{ fetchCrate, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "runiq";
version = "1.2.1";
src = fetchCrate {
inherit pname version;
sha256 = "0xhd1z8mykxg9kiq8nw5agy1jxfk414czq62xm1s13ssig3h7jqj";
};
cargoSha256 = "1g4yfz5xq9lqwh0ggyn8kn8bnzrqfmh7kx455md5ranrqqh0x5db";
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 ];
};
}

View file

@ -32022,6 +32022,8 @@ with pkgs;
run-scaled = callPackage ../tools/X11/run-scaled { };
runiq = callPackage ../tools/text/runiq { };
runit = callPackage ../tools/system/runit { };
refind = callPackage ../tools/bootloaders/refind { };