forked from mirrors/nixpkgs
wl-clipboard-x11: Init at 5
This commit is contained in:
parent
6bad84a25d
commit
639c8aac78
29
pkgs/tools/wayland/wl-clipboard-x11/default.nix
Normal file
29
pkgs/tools/wayland/wl-clipboard-x11/default.nix
Normal file
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -2563,6 +2563,8 @@ with pkgs;
|
|||
|
||||
wl-clipboard = callPackage ../tools/wayland/wl-clipboard { };
|
||||
|
||||
wl-clipboard-x11 = callPackage ../tools/wayland/wl-clipboard-x11 { };
|
||||
|
||||
wl-mirror = callPackage ../tools/wayland/wl-mirror { };
|
||||
|
||||
wlogout = callPackage ../tools/wayland/wlogout { };
|
||||
|
|
Loading…
Reference in a new issue