Merge pull request #50314 from dywedir/wl-clipboard
wl-clipboard: init at 1.0.0
This commit is contained in:
commit
8d275f6d17
26
pkgs/tools/misc/wl-clipboard/default.nix
Normal file
26
pkgs/tools/misc/wl-clipboard/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
|
||||||
|
, wayland, wayland-protocols }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "wl-clipboard-${version}";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bugaevc";
|
||||||
|
repo = "wl-clipboard";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "03h6ajcc30w6928bkd4h6xfj4iy2359ww6hdlybq8mr1zwmb2h0q";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ];
|
||||||
|
buildInputs = [ wayland ];
|
||||||
|
mesonFlags = [ "-Dauto_features=enabled" ];
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
};
|
||||||
|
}
|
@ -2413,6 +2413,8 @@ with pkgs;
|
|||||||
inherit (pythonPackages) sphinx;
|
inherit (pythonPackages) sphinx;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wl-clipboard = callPackage ../tools/misc/wl-clipboard { };
|
||||||
|
|
||||||
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
|
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
|
||||||
|
|
||||||
### DEVELOPMENT / EMSCRIPTEN
|
### DEVELOPMENT / EMSCRIPTEN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user