nixpkgs/pkgs/tools/misc/xdo/default.nix
Ryan Mulligan b227325444 xdo: 0.5.6 -> 0.5.7
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"
2018-02-27 19:08:09 -08:00

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;
};
}