nixpkgs/pkgs/tools/misc/clipster/default.nix

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

53 lines
2.2 KiB
Nix
Raw Normal View History

2021-06-23 18:22:04 +00:00
{fetchFromGitHub , lib, stdenv, python3, gtk3, libwnck,
gobject-introspection, wrapGAppsHook3 }:
2016-11-09 20:26:25 +00:00
stdenv.mkDerivation rec {
pname = "clipster";
2022-03-05 13:24:12 +00:00
version = "2.1.1";
2016-11-09 20:26:25 +00:00
src = fetchFromGitHub {
owner = "mrichar1";
repo = "clipster";
2019-09-08 23:38:31 +00:00
rev = version;
2022-03-05 13:24:12 +00:00
sha256 = "sha256-MLLkFsBBQtb7RFQN+uoEmuCn5bnbkYsqoyWGZtTCI2U=";
2016-11-09 20:26:25 +00:00
};
pythonEnv = python3.withPackages(ps: with ps; [ pygobject3 ]);
2016-11-09 20:26:25 +00:00
nativeBuildInputs = [ gobject-introspection ];
buildInputs = [ pythonEnv gtk3 libwnck wrapGAppsHook3 ];
2016-11-09 20:26:25 +00:00
installPhase = ''
sed -i 's/python/python3/g' clipster
2016-11-09 20:26:25 +00:00
mkdir -p $out/bin/
cp clipster $out/bin/
'';
meta = with lib; {
2016-11-09 20:26:25 +00:00
description = "lightweight python clipboard manager";
longDescription = ''
Clipster was designed to try to add a good selection of useful features, while avoiding bad design decisions or becoming excessively large.
Its feature list includes:
- Event driven, rather than polling. More efficient, helps with power management.
- Control over when it write to disk, for similar reasons.
- Command-line options/config for everything.
- No global keybindings - that's the job of a Window Manager
- Sensible handling of unusual clipboard events. Some apps (Chrome, Emacs) trigger a clipboard 'update event' for every character you select, rather than just one event when you stop selecting.
- Preserves the last item in clipboard after an application closes. (Many apps clear the clipboard on exit).
- Minimal dependencies, no complicated build/install requirements.
- utf-8 support
- Proper handling of embedded newlines and control codes.
- Smart matching of urls, emails, regexes. (extract_*)
- Option to synchronise the SELECTION and CLIPBOARD clipboards. (sync_selections)
- Option to track one or both clipboards. (active_selections)
- Option to ignore clipboard updates form certain applications. (filter_classes)
- Ability to delete items in clipboard history.
'';
2024-03-19 12:26:06 +00:00
license = licenses.agpl3Only;
homepage = "https://github.com/mrichar1/clipster";
2016-11-09 20:26:25 +00:00
platforms = platforms.linux;
2017-04-01 15:16:51 +00:00
maintainers = [ maintainers.magnetophon ];
2023-11-27 01:17:53 +00:00
mainProgram = "clipster";
2016-11-09 20:26:25 +00:00
};
}