nixpkgs/pkgs/applications/misc/rofimoji/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.2 KiB
Nix
Raw Normal View History

2020-09-28 00:37:44 +02:00
{ buildPythonApplication
, fetchFromGitHub
, lib
, python3
2020-09-28 00:37:44 +02:00
, waylandSupport ? true
, x11Support ? true
, configargparse
2020-09-28 00:37:44 +02:00
, rofi
, wl-clipboard
, wtype
, xdotool
, xsel
}:
buildPythonApplication rec {
pname = "rofimoji";
2022-09-17 12:22:34 +02:00
version = "5.6.0";
2022-05-13 06:01:16 +02:00
format = "pyproject";
2020-09-28 00:37:44 +02:00
src = fetchFromGitHub {
owner = "fdw";
repo = "rofimoji";
2022-07-19 04:15:58 +02:00
rev = "refs/tags/${version}";
2022-09-17 12:22:34 +02:00
sha256 = "sha256-6W/59DjxrgejHSkNxpruDAws812Vjyf+GePDPbXzVbc=";
2020-09-28 00:37:44 +02:00
};
nativeBuildInputs = [
python3.pkgs.setuptools
];
2020-09-28 00:37:44 +02:00
# `rofi` and the `waylandSupport` and `x11Support` dependencies
# contain binaries needed at runtime.
propagatedBuildInputs = with lib; [ configargparse rofi ]
2020-09-28 00:37:44 +02:00
++ optionals waylandSupport [ wl-clipboard wtype ]
++ optionals x11Support [ xdotool xsel ];
# The 'extractors' sub-module is used for development
# and has additional dependencies.
2020-12-11 07:35:07 +01:00
postPatch = ''
rm -rf extractors
'';
2020-09-28 00:37:44 +02:00
2021-01-25 21:45:33 +01:00
# no tests executed
doCheck = false;
2020-09-28 00:37:44 +02:00
meta = with lib; {
description = "A simple emoji and character picker for rofi";
homepage = "https://github.com/fdw/rofimoji";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ justinlovinger ];
};
}