depot/pkgs/by-name/ro/rofimoji/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

58 lines
1.4 KiB
Nix

{ lib
, python3Packages
, fetchFromGitHub
, installShellFiles
, waylandSupport ? true
, x11Support ? true
, rofi
, wl-clipboard
, wtype
, xdotool
, xsel
}:
python3Packages.buildPythonApplication rec {
pname = "rofimoji";
version = "6.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fdw";
repo = "rofimoji";
rev = "refs/tags/${version}";
hash = "sha256-CY+ddF2Rth92R22QKqOb/Us+rZhvWTaU/jKy8fljWqQ=";
};
nativeBuildInputs = [
python3Packages.poetry-core
installShellFiles
];
# `rofi` and the `waylandSupport` and `x11Support` dependencies
# contain binaries needed at runtime.
propagatedBuildInputs = [ python3Packages.configargparse rofi ]
++ lib.optionals waylandSupport [ wl-clipboard wtype ]
++ lib.optionals x11Support [ xdotool xsel ];
# The 'extractors' sub-module is used for development
# and has additional dependencies.
postPatch = ''
rm -rf extractors
'';
postInstall = ''
installManPage src/picker/docs/rofimoji.1
'';
meta = with lib; {
description = "Simple emoji and character picker for rofi";
mainProgram = "rofimoji";
homepage = "https://github.com/fdw/rofimoji";
changelog = "https://github.com/fdw/rofimoji/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ justinlovinger ];
};
}