depot/third_party/nixpkgs/pkgs/tools/misc/oscclip/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

34 lines
975 B
Nix

{ fetchFromGitHub
, python3Packages
, stdenv
, writeText
, lib
}:
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.";
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;
maintainers = [ maintainers.traxys ];
};
}