mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
didyoumean: init at 1.1.0
This commit is contained in:
parent
839460c9f8
commit
dcf8b95055
2 changed files with 36 additions and 0 deletions
32
pkgs/tools/misc/didyoumean/default.nix
Normal file
32
pkgs/tools/misc/didyoumean/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, libxcb
|
||||
# Darwin dependencies
|
||||
, AppKit
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "didyoumean";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hisbaan";
|
||||
repo = "didyoumean";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-t2bmvz05vWIxQhC474q/9uky1kAQoFN8Z+qflw5Vj68=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-4DbziI9enib4pm9/P4WEu15glIxtejaV2GCqbzuxxyw=";
|
||||
|
||||
buildInputs = lib.optional stdenv.isLinux [ libxcb ]
|
||||
++ lib.optionals stdenv.isDarwin [ AppKit ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI spelling corrector for when you're unsure";
|
||||
homepage = "https://github.com/hisbaan/didyoumean";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ evanjs ];
|
||||
};
|
||||
}
|
|
@ -433,6 +433,10 @@ with pkgs;
|
|||
|
||||
devour = callPackage ../tools/X11/devour {};
|
||||
|
||||
didyoumean = callPackage ../tools/misc/didyoumean {
|
||||
inherit (darwin.apple_sdk.frameworks) AppKit;
|
||||
};
|
||||
|
||||
diffPlugins = (callPackage ../build-support/plugins.nix {}).diffPlugins;
|
||||
|
||||
dieHook = makeSetupHook {} ../build-support/setup-hooks/die.sh;
|
||||
|
|
Loading…
Reference in a new issue