From 639c8aac781370deac15711cd1169d96f95a3cad Mon Sep 17 00:00:00 2001 From: Samuel Gräfenstein Date: Thu, 2 Dec 2021 14:17:32 +0100 Subject: wl-clipboard-x11: Init at 5 --- pkgs/tools/wayland/wl-clipboard-x11/default.nix | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/tools/wayland/wl-clipboard-x11/default.nix (limited to 'pkgs/tools/wayland') diff --git a/pkgs/tools/wayland/wl-clipboard-x11/default.nix b/pkgs/tools/wayland/wl-clipboard-x11/default.nix new file mode 100644 index 00000000000..5e87342dff8 --- /dev/null +++ b/pkgs/tools/wayland/wl-clipboard-x11/default.nix @@ -0,0 +1,29 @@ +{ lib, stdenv, fetchFromGitHub, wl-clipboard }: + +stdenv.mkDerivation rec { + pname = "wl-clipboard-x11"; + version = "5"; + + src = fetchFromGitHub { + owner = "brunelli"; + repo = pname; + rev = "v${version}"; + hash = "sha256-i+oF1Mu72O5WPTWzqsvo4l2CERWWp4Jq/U0DffPZ8vg="; + }; + + makeFlags = [ "PREFIX=${placeholder "out"}" ]; + + postPatch = '' + substituteInPlace src/wl-clipboard-x11 \ + --replace '$(command -v wl-copy)' ${wl-clipboard}/bin/wl-copy \ + --replace '$(command -v wl-paste)' ${wl-clipboard}/bin/wl-paste + ''; + + meta = with lib; { + description = "A wrapper to use wl-clipboard as a drop-in replacement for X11 clipboard tools"; + homepage = "https://github.com/brunelli/wl-clipboard-x11"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ samuelgrf ]; + mainProgram = "xclip"; + }; +} -- cgit 1.4.1