rargs: init at 0.3.0
This commit is contained in:
parent
3ff786a091
commit
a2780ce65a
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/misc/rargs/default.nix
Normal file
24
pkgs/tools/misc/rargs/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rargs";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lotabout";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "188gj05rbivci1z4z29vwdwxlj2w01v5i4avwrxjnj1dd6mmlbxd";
|
||||
};
|
||||
|
||||
cargoSha256 = "0qzkhx0n28f5wy4fral3adn499q3f10q71cd544s4ghqwqn4khc9";
|
||||
|
||||
doCheck=false; # `rargs`'s test depends on the deprecated `assert_cli` crate, which in turn is not in Nixpkgs
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "xargs + awk with pattern matching support";
|
||||
homepage = "https://github.com/lolabout/rargs";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ pblkt ];
|
||||
};
|
||||
}
|
|
@ -26823,6 +26823,8 @@ in
|
|||
|
||||
py-wmi-client = callPackage ../tools/networking/py-wmi-client { };
|
||||
|
||||
rargs = callPackage ../tools/misc/rargs { };
|
||||
|
||||
redprl = callPackage ../applications/science/logic/redprl { };
|
||||
|
||||
renderizer = pkgs.callPackage ../development/tools/renderizer {};
|
||||
|
|
Loading…
Reference in a new issue