nixpkgs/pkgs/tools/X11/wmutils-core/default.nix
Vladimír Čunát 3d0a6819da wmutils-core: add to tools/X11 (close #6585)
@vcunat fixed and cleaned this a little.
2015-03-08 15:46:02 +01:00

23 lines
544 B
Nix

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