2021-01-25 08:26:54 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2020-08-21 18:27:12 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rargs";
|
|
|
|
version = "0.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lotabout";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "188gj05rbivci1z4z29vwdwxlj2w01v5i4avwrxjnj1dd6mmlbxd";
|
|
|
|
};
|
|
|
|
|
2021-05-07 11:00:49 +00:00
|
|
|
cargoSha256 = "18yd4dpzjyw6w1ms74pzxqyn5fkh8q4rsg6rqsp6bsz7300fxxvh";
|
2020-08-21 18:27:12 +00:00
|
|
|
|
|
|
|
doCheck=false; # `rargs`'s test depends on the deprecated `assert_cli` crate, which in turn is not in Nixpkgs
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-21 18:27:12 +00:00
|
|
|
description = "xargs + awk with pattern matching support";
|
|
|
|
homepage = "https://github.com/lolabout/rargs";
|
|
|
|
license = with licenses; [ mit ];
|
2021-01-19 21:20:11 +00:00
|
|
|
maintainers = with maintainers; [ pblkt ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "rargs";
|
2020-08-21 18:27:12 +00:00
|
|
|
};
|
|
|
|
}
|