depot/third_party/nixpkgs/pkgs/by-name/yo/yofi/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

50 lines
996 B
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, autoPatchelfHook
, fontconfig
, libxkbcommon
, pkg-config
, libgcc
, wayland
}:
rustPlatform.buildRustPackage rec {
pname = "yofi";
version = "0.2.2";
src = fetchFromGitHub {
owner = "l4l";
repo = "yofi";
rev = "refs/tags/${version}";
hash = "sha256-cepAZyA4RBgqeF20g6YOlZTM0aRqErw17yuQ3U24UEg=";
};
cargoHash = "sha256-iSy/y1iwhR8x3wDIfazMeROSrJ8uRyA10hoNo6y2OQc=";
nativeBuildInputs = [
autoPatchelfHook
pkg-config
];
buildInputs = [
libgcc
libxkbcommon
];
appendRunpaths = [
(lib.makeLibraryPath [ fontconfig wayland ])
];
checkFlags = [
# Fail to run in sandbox environment.
"--skip=screen::context::test"
];
meta = {
description = "Minimalist app launcher in Rust";
homepage = "https://github.com/l4l/yofi";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ rayslash ];
mainProgram = "yofi";
};
}