4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
51 lines
2.1 KiB
Nix
51 lines
2.1 KiB
Nix
{fetchFromGitHub , lib, stdenv, python3, gtk3, libwnck3,
|
|
gobject-introspection, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clipster";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrichar1";
|
|
repo = "clipster";
|
|
rev = version;
|
|
sha256 = "0582r8840dk4k4jj1zq6kmyh7z9drcng099bj7f4wvr468nb9z1p";
|
|
};
|
|
|
|
pythonEnv = python3.withPackages(ps: with ps; [ pygobject3 ]);
|
|
|
|
buildInputs = [ pythonEnv gtk3 libwnck3 gobject-introspection wrapGAppsHook ];
|
|
|
|
installPhase = ''
|
|
sed -i 's/python/python3/g' clipster
|
|
mkdir -p $out/bin/
|
|
cp clipster $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
license = licenses.agpl3;
|
|
homepage = "https://github.com/mrichar1/clipster";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
};
|
|
}
|