From efbea1ff67d7ed5257279cd7ea6dd618230002e7 Mon Sep 17 00:00:00 2001 From: traxys Date: Wed, 31 May 2023 18:14:46 +0200 Subject: [PATCH] pkgs: Use upstream oscclip --- pkgs/default.nix | 1 - pkgs/oscclip.nix | 36 ------------------------------------ 2 files changed, 37 deletions(-) delete mode 100644 pkgs/oscclip.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 8a49715..b7bdb10 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -3,7 +3,6 @@ sources, naersk, }: rec { - oscclip = callPackage ./oscclip.nix {oscclip-src = sources.oscclip;}; wowup = callPackage ./wowup.nix {}; simulationcraft = callPackage ./simulationcraft.nix {simulationcraft-src = sources.simulationcraft;}; proton-ge = callPackage ./proton-ge.nix {proton-ge-src = sources.proton-ge;}; diff --git a/pkgs/oscclip.nix b/pkgs/oscclip.nix deleted file mode 100644 index db87744..0000000 --- a/pkgs/oscclip.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ - 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="; - }; - - buildInputs = 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; - platforms = platforms.all; - }; -}