Merge pull request #134522 from figsoda/hck

hck: init at 0.5.4

authored by

Sandro and committed by
GitHub
ba984086 6cbfbcda

+25
+23
pkgs/tools/text/hck/default.nix
··· 1 + { fetchFromGitHub, lib, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "hck"; 5 + version = "0.5.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "sstadick"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1zdzi98qywlwk5bp47963vya2p2ahrbjkc9h63lmb05wlas9s78y"; 12 + }; 13 + 14 + cargoSha256 = "0lvd5xpgh2vq2lszzb0fs6ha2vb419a5w0hlkq3287vq3ya3p4qg"; 15 + 16 + meta = with lib; { 17 + description = "A close to drop in replacement for cut that can use a regex delimiter instead of a fixed string"; 18 + homepage = "https://github.com/sstadick/hck"; 19 + changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md"; 20 + license = with licenses; [ mit /* or */ unlicense ]; 21 + maintainers = with maintainers; [ figsoda ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 31458 31458 31459 31459 hatari = callPackage ../misc/emulators/hatari { }; 31460 31460 31461 + hck = callPackage ../tools/text/hck { }; 31462 + 31461 31463 helm = callPackage ../applications/audio/helm { }; 31462 31464 31463 31465 helmfile = callPackage ../applications/networking/cluster/helmfile { };