wl-clipboard: rename from tools/misc to tools/wayland

This commit is contained in:
AndersonTorres
2021-02-16 12:37:40 -03:00
parent e72435ba8e
commit e6070d1e08
2 changed files with 12 additions and 5 deletions
-25
View File
@@ -1,25 +0,0 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config
, wayland, wayland-protocols }:
stdenv.mkDerivation rec {
pname = "wl-clipboard";
version = "2.0.0";
src = fetchFromGitHub {
owner = "bugaevc";
repo = "wl-clipboard";
rev = "v${version}";
sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d";
};
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ];
buildInputs = [ wayland ];
meta = with lib; {
description = "Command-line copy/paste utilities for Wayland";
homepage = "https://github.com/bugaevc/wl-clipboard";
license = licenses.gpl3;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}