summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11/wmutils-core
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-03-08 15:46:02 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-03-08 15:46:02 +0100
commit3d0a6819dace56df1ad0a48c372ffc25d335e68d (patch)
tree6b56300aad9ac33acacb89fcd85e5b1ede55b6ee /pkgs/tools/X11/wmutils-core
parent2d8f7883a91becd4f870594f81656447d48b0b81 (diff)
wmutils-core: add to tools/X11 (close #6585)
@vcunat fixed and cleaned this a little.
Diffstat (limited to 'pkgs/tools/X11/wmutils-core')
-rw-r--r--pkgs/tools/X11/wmutils-core/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/X11/wmutils-core/default.nix b/pkgs/tools/X11/wmutils-core/default.nix
new file mode 100644
index 000000000000..62f6e65bc214
--- /dev/null
+++ b/pkgs/tools/X11/wmutils-core/default.nix
@@ -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;
+ };
+}