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 06:54:24 -08:00
stdenv.mkDerivation rec {
pname = "wl-clipboard";
2019-10-03 13:39:35 -07:00
version = "2.0.0";
2018-11-13 06:54:24 -08:00
src = fetchFromGitHub {
owner = "bugaevc";
repo = "wl-clipboard";
rev = "v${version}";
2019-10-03 13:39:35 -07:00
sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d";
2018-11-13 06:54:24 -08:00
};
2021-01-16 19:51:22 -08:00
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ];
2018-11-13 06:54:24 -08:00
buildInputs = [ wayland ];
meta = with lib; {
homepage = "https://github.com/bugaevc/wl-clipboard";
description = "Command-line copy/paste utilities for Wayland";
2021-02-16 12:24:46 -08:00
license = licenses.gpl3Plus;
2018-11-13 06:54:24 -08:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}
2021-02-16 12:24:46 -08:00
# TODO: is wayland-protocols a nativeBuildInput or a buildInput?