mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
b227325444
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/qbdnwwzhmilpjybrw73nn632d531w2n3-xdo-0.5.7/bin/xdo -h` got 0 exit code - ran `/nix/store/qbdnwwzhmilpjybrw73nn632d531w2n3-xdo-0.5.7/bin/xdo -v` and found version 0.5.7 - found 0.5.7 with grep in /nix/store/qbdnwwzhmilpjybrw73nn632d531w2n3-xdo-0.5.7 - found 0.5.7 in filename of file in /nix/store/qbdnwwzhmilpjybrw73nn632d531w2n3-xdo-0.5.7 cc "@meisternu"
26 lines
671 B
Nix
26 lines
671 B
Nix
{ stdenv, fetchFromGitHub, libxcb, xcbutil, xcbutilwm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xdo-${version}";
|
|
version = "0.5.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "baskerville";
|
|
repo = "xdo";
|
|
rev = version;
|
|
sha256 = "1h3jrygcjjbavdbkpx2hscsf0yf97gk487lzjdlvymd7dxdv9hy9";
|
|
};
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
buildInputs = [ libxcb xcbutilwm xcbutil ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small X utility to perform elementary actions on windows";
|
|
homepage = https://github.com/baskerville/xdo;
|
|
maintainers = with maintainers; [ meisternu ];
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|