mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
mcfly-fzf: init at 0.1.2
This commit is contained in:
parent
8c22a6517c
commit
cba7a53a3d
2 changed files with 34 additions and 0 deletions
|
@ -16965,6 +16965,11 @@
|
|||
githubId = 50401154;
|
||||
name = "Simone Ruffini";
|
||||
};
|
||||
simonhammes = {
|
||||
github = "simonhammes";
|
||||
githubId = 10352679;
|
||||
name = "Simon Hammes";
|
||||
};
|
||||
simonkampe = {
|
||||
email = "simon.kampe+nix@gmail.com";
|
||||
github = "simonkampe";
|
||||
|
|
29
pkgs/by-name/mc/mcfly-fzf/package.nix
Normal file
29
pkgs/by-name/mc/mcfly-fzf/package.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mcfly-fzf";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bnprks";
|
||||
repo = "mcfly-fzf";
|
||||
rev = version;
|
||||
hash = "sha256-3QxiG9MR0BCKRjA8ue/Yb/AZ5SwiSdjn6qaOxSAK0SI=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace shell/mcfly-fzf.bash --replace '$(command -v mcfly-fzf)' '${placeholder "out"}/bin/mcfly-fzf'
|
||||
substituteInPlace shell/mcfly-fzf.zsh --replace '$(command -v mcfly-fzf)' '${placeholder "out"}/bin/mcfly-fzf'
|
||||
substituteInPlace shell/mcfly-fzf.fish --replace '(command -v mcfly-fzf)' '${placeholder "out"}/bin/mcfly-fzf'
|
||||
'';
|
||||
|
||||
cargoHash = "sha256-pR5Fni/8iJuaDyWKrOnSanO50hvFXh73Qlgmd4a3Ucs=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/bnprks/mcfly-fzf";
|
||||
description = "Integrate Mcfly with fzf to combine a solid command history database with a widely-loved fuzzy search UI";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.simonhammes ];
|
||||
mainProgram = "mcfly-fzf";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue