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