2016-03-07 11:11:13 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, which, xorg,
|
|
|
|
libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, libpng,
|
|
|
|
libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, gettext,
|
|
|
|
freetype, fontconfig }:
|
2008-03-25 02:50:54 -07:00
|
|
|
|
2014-05-02 13:42:12 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-07 11:11:13 -08:00
|
|
|
name = "jwm-${version}";
|
|
|
|
version = "1406";
|
2010-07-28 08:35:01 -07:00
|
|
|
|
2008-03-25 02:50:54 -07:00
|
|
|
src = fetchurl {
|
2016-03-07 11:11:13 -08:00
|
|
|
url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz";
|
|
|
|
sha256 = "0yk22b7cshhyfpcqnb4p59yxspx95xg9yp1kmkxi2fyw95cacab4";
|
2008-03-25 02:50:54 -07:00
|
|
|
};
|
|
|
|
|
2016-03-07 11:11:13 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig automake autoconf libtool which ];
|
2011-03-17 12:21:26 -07:00
|
|
|
|
2016-03-07 11:11:13 -08:00
|
|
|
buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender
|
|
|
|
libXau libXdmcp libpng libjpeg expat xproto xextproto xineramaproto
|
|
|
|
librsvg gettext freetype fontconfig ];
|
2008-03-25 02:50:54 -07:00
|
|
|
|
2016-03-07 11:11:13 -08:00
|
|
|
preConfigure = "./autogen.sh";
|
2008-03-25 02:50:54 -07:00
|
|
|
|
|
|
|
meta = {
|
2016-03-07 11:11:13 -08:00
|
|
|
homepage = "http://joewing.net/projects/jwm/";
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "A window manager for X11 that requires only Xlib";
|
2016-03-07 11:11:13 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-03-25 02:50:54 -07:00
|
|
|
};
|
|
|
|
}
|