1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/tools/misc/wl-clipboard/default.nix

26 lines
700 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig
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
};
nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ];
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;
};
}