wmutils-core: add to tools/X11 (close #6585)

@vcunat fixed and cleaned this a little.
This commit is contained in:
Vladimír Čunát 2015-03-08 15:46:02 +01:00
parent 2d8f7883a9
commit 3d0a6819da
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, libxcb }:
stdenv.mkDerivation rec {
name = "wmutils-core-${version}";
version = "1.0";
src = fetchurl {
url = "https://github.com/wmutils/core/archive/v${version}.tar.gz";
sha256 = "10vn56rbrjykcrjr06ki4qc12sri1ywrcvm89nmxlqhkxx4i239p";
};
buildInputs = [ libxcb ];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Set of window manipulation tools";
homepage = https://github.com/wmutils/core;
license = licenses.isc;
platforms = platforms.unix;
};
}

View file

@ -13707,6 +13707,8 @@ let
inherit (gnome2) zenity;
};
wmutils-core = callPackage ../tools/X11/wmutils-core { };
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
x2x = callPackage ../tools/X11/x2x { };