nixpkgs/pkgs/tools/wayland/wl-clipboard/default.nix

34 lines
777 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wayland
, wayland-protocols
}:
2018-11-13 14:54:24 +00:00
stdenv.mkDerivation rec {
pname = "wl-clipboard";
2019-10-03 20:39:35 +00: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 20:39:35 +00: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; {
homepage = "https://github.com/bugaevc/wl-clipboard";
description = "Command-line copy/paste utilities for Wayland";
2021-02-16 20:24:46 +00:00
license = licenses.gpl3Plus;
2018-11-13 14:54:24 +00:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}
2021-02-16 20:24:46 +00:00
# TODO: is wayland-protocols a nativeBuildInput or a buildInput?