mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
37 lines
867 B
Nix
37 lines
867 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, Security
|
|
, testers
|
|
, igrep
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "igrep";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "konradsz";
|
|
repo = "igrep";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZZhzBGLpzd9+rok+S/ypKpWXVzXaA1CnviC7LfgP/CU=";
|
|
};
|
|
|
|
cargoHash = "sha256-raSz/+u7P04qHmvdfYoWKOKtNtaFlgmT8Nw0ImhCMkU=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { package = igrep; command = "ig --version"; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Interactive Grep";
|
|
homepage = "https://github.com/konradsz/igrep";
|
|
changelog = "https://github.com/konradsz/igrep/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
mainProgram = "ig";
|
|
};
|
|
}
|