mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
65dd28c569
This incorporates a number of bugfixes, as well as adding the `below` and `above` actions Also moved package from fetchurl to fetchFromGitHub
22 lines
630 B
Nix
22 lines
630 B
Nix
{ stdenv, fetchurl, libxcb, xcbutilwm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xdo-0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/baskerville/xdo/archive/0.5.tar.gz";
|
|
sha256 = "0sjnjs12i0gp1dg1m5jid4a3bg9am4qkf0qafyp6yn176yzcz1i6";
|
|
};
|
|
|
|
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
|
|
|
|
buildInputs = [ libxcb xcbutilwm ];
|
|
|
|
meta = {
|
|
description = "Small X utility to perform elementary actions on windows";
|
|
homepage = https://github.com/baskerville/xdo;
|
|
maintainers = [ stdenv.lib.maintainers.meisternu ];
|
|
license = "Custom";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|