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

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

33 lines
970 B
Nix
Raw Normal View History

{ lib
2022-11-23 21:30:40 +01:00
, python3Packages
, fetchFromGitHub
2022-11-23 21:30:40 +01:00
}:
python3Packages.buildPythonApplication rec {
pname = "oscclip";
version = "0.4.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "rumpelsepp";
repo = "oscclip";
rev = "v${version}";
sha256 = "sha256-WQvZn+SWamEqEXPutIZVDZTIczybtHUG9QsN8XxUeg8=";
};
nativeBuildInputs = with python3Packages; [ poetry-core ];
meta = with lib; {
description = "A program that allows to copy/paste from a terminal using osc-52 control sequences";
2022-11-23 21:30:40 +01:00
longDescription = ''
oscclip provides two commands: osc-copy and osc-paste. These commands allow to interact with the clipboard through the terminal directly.
This means that they work through ssh sessions for example (given that the terminal supports osc-52 sequences).
'';
homepage = "https://github.com/rumpelsepp/oscclip";
license = licenses.gpl3Only;
2023-01-29 12:27:35 +01:00
maintainers = with maintainers; [ rumpelsepp traxys ];
2022-11-23 21:30:40 +01:00
};
}