3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/wl-clipboard/default.nix

26 lines
702 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config
2018-11-13 14:54:24 +00:00
, wayland, wayland-protocols }:
stdenv.mkDerivation rec {
pname = "wl-clipboard";
2019-10-03 21:39:35 +01:00
version = "2.0.0";
2018-11-13 14:54:24 +00:00
src = fetchFromGitHub {
owner = "bugaevc";
repo = "wl-clipboard";
rev = "v${version}";
2019-10-03 21:39:35 +01:00
sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d";
2018-11-13 14:54:24 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ];
2018-11-13 14:54:24 +00:00
buildInputs = [ wayland ];
meta = with lib; {
2018-11-13 14:54:24 +00:00
description = "Command-line copy/paste utilities for Wayland";
homepage = "https://github.com/bugaevc/wl-clipboard";
2018-11-13 14:54:24 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}