2016-06-02 15:11:05 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, gettext, which,
|
|
|
|
xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp,
|
|
|
|
libXmu, libpng, libjpeg, expat, xproto, xextproto, xineramaproto, librsvg,
|
2016-03-07 20:11:13 +01:00
|
|
|
freetype, fontconfig }:
|
2008-03-25 10:50:54 +01:00
|
|
|
|
2014-05-02 22:42:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-07 20:11:13 +01:00
|
|
|
name = "jwm-${version}";
|
2016-06-12 13:06:27 +02:00
|
|
|
version = "1535";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2008-03-25 10:50:54 +01:00
|
|
|
src = fetchurl {
|
2016-03-07 20:11:13 +01:00
|
|
|
url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz";
|
2016-06-12 13:06:27 +02:00
|
|
|
sha256 = "1v593v1n9p9nvlhz1m9vc94wj21a6rbk7hcja30421h5mwa2b6gb";
|
2008-03-25 10:50:54 +01:00
|
|
|
};
|
|
|
|
|
2016-06-02 15:11:05 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ];
|
2011-03-17 20:21:26 +01:00
|
|
|
|
2016-03-07 20:11:13 +01:00
|
|
|
buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender
|
2016-04-12 17:18:40 +02:00
|
|
|
libXau libXdmcp libXmu libpng libjpeg expat xproto xextproto xineramaproto
|
|
|
|
librsvg freetype fontconfig ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2008-03-25 10:50:54 +01:00
|
|
|
|
2016-03-07 20:11:13 +01:00
|
|
|
preConfigure = "./autogen.sh";
|
2008-03-25 10:50:54 +01:00
|
|
|
|
|
|
|
meta = {
|
2016-03-07 20:11:13 +01:00
|
|
|
homepage = "http://joewing.net/projects/jwm/";
|
2016-06-02 15:11:05 +02:00
|
|
|
description = "Joe's Window Manager is a light-weight X11 window manager";
|
2016-03-07 20:11:13 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-06-02 15:11:05 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
2008-03-25 10:50:54 +01:00
|
|
|
};
|
|
|
|
}
|