biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / hck / default.nix
blob00adbdc6288b6f8271aebe5e88dcf60c19732f87
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , cmake
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "hck";
9   version = "0.10.1";
11   src = fetchFromGitHub {
12     owner = "sstadick";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-7a+gNnxr/OiM5MynOxOQ3hAprog7eAAZnMvi+5/gMzg=";
16   };
18   cargoHash = "sha256-rGKD09YV+QqzZ1n6gYerjbpTr+4KJ5UzynDDRw5rnP0=";
20   nativeBuildInputs = [ cmake ];
22   meta = with lib; {
23     description = "Close to drop in replacement for cut that can use a regex delimiter instead of a fixed string";
24     homepage = "https://github.com/sstadick/hck";
25     changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md";
26     license = with licenses; [ mit /* or */ unlicense ];
27     maintainers = with maintainers; [ figsoda gepbird ];
28     mainProgram = "hck";
29   };