mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
27 lines
638 B
Nix
27 lines
638 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "choose";
|
|
version = "1.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theryangeary";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-yW1quDyQn2xhrlhhPj9DKq7g8LlYKvEKDFj3xSagRTU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-0INC0LFzlnFnt5pCiU4xePxU8a6GiU1L8bg7zcuFl2k=";
|
|
|
|
meta = with lib; {
|
|
description = "Human-friendly and fast alternative to cut and (sometimes) awk";
|
|
mainProgram = "choose";
|
|
homepage = "https://github.com/theryangeary/choose";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ sohalt ];
|
|
};
|
|
}
|