mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
commit
10223a3988
32
pkgs/development/tools/misc/funzzy/default.nix
Normal file
32
pkgs/development/tools/misc/funzzy/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "funzzy";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cristianoliveira";
|
||||
repo = "funzzy";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-vrfhxGlNCsUifEYnQS+3CkU8Eh1QCb9gFQeXwqSXvVk=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-AOI1wSWD9JfIawMK0WPnApkWLODWkj5zFLRZrru1CnA=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.CoreServices
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A lightweight watcher";
|
||||
homepage = "https://github.com/cristianoliveira/funzzy";
|
||||
changelog = "https://github.com/cristianoliveira/funzzy/releases/tag/${src.rev}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -18415,6 +18415,8 @@ with pkgs;
|
||||
|
||||
fundoc = callPackage ../development/tools/fundoc { };
|
||||
|
||||
funzzy = callPackage ../development/tools/misc/funzzy { };
|
||||
|
||||
gede = libsForQt5.callPackage ../development/tools/misc/gede { };
|
||||
|
||||
gdbgui = python3Packages.callPackage ../development/tools/misc/gdbgui { };
|
||||
|
Loading…
Reference in New Issue
Block a user