2016-06-02 14:11:05 +01: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 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-08-18 14:49:56 +01:00
|
|
|
version = "1548";
|
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-08-18 14:49:56 +01:00
|
|
|
sha256 = "1ih5y7567vwcbnkjwm3cc9iq4n9rzz818mkh6ryli9ld230hla5r";
|
2008-03-25 09:50:54 +00:00
|
|
|
};
|
|
|
|
|
2016-06-02 14:11:05 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ];
|
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/";
|
2016-06-02 14:11:05 +01:00
|
|
|
description = "Joe's Window Manager is a light-weight X11 window manager";
|
2016-03-07 19:11:13 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-06-02 14:11:05 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
2008-03-25 09:50:54 +00:00
|
|
|
};
|
|
|
|
}
|