kdotool: init at 0.2.1
This commit is contained in:
parent
fe4d0e07ea
commit
64cc90ed2f
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/kd/kdotool/package.nix
Normal file
30
pkgs/by-name/kd/kdotool/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
pkg-config,
|
||||||
|
dbus
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
version = "0.2.1";
|
||||||
|
pname = "kdotool";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jinliu";
|
||||||
|
repo = "kdotool";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-ogdZziNV4b3h9LiEyWFrD/I/I4k8Z5rNFTNjQpWBQtg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-pL5vLfNWsZi75mI5K/PYVmgHTPCyIKpQY0YU2CJABN8=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ dbus ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "xdotool-like for KDE Wayland";
|
||||||
|
homepage = "https://github.com/jinliu/kdotool";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ kotatsuyaki ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue