mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
sig: init at 0.1.3 (#336927)
This commit is contained in:
commit
2c0f74c529
|
@ -16974,6 +16974,12 @@
|
||||||
githubId = 315234;
|
githubId = 315234;
|
||||||
name = "Serge Bazanski";
|
name = "Serge Bazanski";
|
||||||
};
|
};
|
||||||
|
qaidvoid = {
|
||||||
|
email = "contact@qaidvoid.dev";
|
||||||
|
github = "qaidvoid";
|
||||||
|
githubId = 12017109;
|
||||||
|
name = "Rabindra Dhakal";
|
||||||
|
};
|
||||||
qbit = {
|
qbit = {
|
||||||
name = "Aaron Bieber";
|
name = "Aaron Bieber";
|
||||||
email = "aaron@bolddaemon.com";
|
email = "aaron@bolddaemon.com";
|
||||||
|
|
27
pkgs/by-name/si/sig/package.nix
Normal file
27
pkgs/by-name/si/sig/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "sig";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ynqa";
|
||||||
|
repo = "sig";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-nt/KV4ohFNZTJTwbNoSxb5v9zQwp+7ypvfMthL1yMus=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-gZZ2aOsqVqGN3gCBZnBXzlFicMssNIEyRT688OuNMJc=";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Interactive grep (for streaming)";
|
||||||
|
homepage = "https://github.com/ynqa/sig";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ qaidvoid ];
|
||||||
|
mainProgram = "sig";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue