1
0

wl-clipboard.nix 733 B

12345678910111213141516171819202122232425
  1. { stdenv, fetchFromGitHub, meson, ninja, pkgconfig
  2. , wayland, wayland-protocols }:
  3. stdenv.mkDerivation rec {
  4. pname = "wl-clipboard";
  5. version = "1.0.0-git";
  6. src = fetchFromGitHub {
  7. owner = "bugaevc";
  8. repo = "wl-clipboard";
  9. rev = "c010972e6b0d2eb3002c49a6a1b5620ff5f7c910";
  10. sha256 = "020l3jy9gsj6gablwdfzp1wfa8yblay3axdjc56i9q8pbhz7g12j";
  11. };
  12. nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ];
  13. buildInputs = [ wayland ];
  14. meta = with stdenv.lib; {
  15. description = "Command-line copy/paste utilities for Wayland";
  16. homepage = https://github.com/bugaevc/wl-clipboard;
  17. license = licenses.gpl3;
  18. maintainers = with maintainers; [ dywedir ];
  19. platforms = platforms.linux;
  20. };
  21. }