2016-10-27 10:52:23 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, automake, autoconf, libtool,
|
|
|
|
gettext, which, xorg, libX11, libXext, libXinerama, libXpm, libXft,
|
|
|
|
libXau, libXdmcp, libXmu, libpng, libjpeg, expat, xproto, xextproto,
|
|
|
|
xineramaproto, librsvg, 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}";
|
2017-12-19 20:31:39 +00:00
|
|
|
version = "1653";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2016-10-27 10:52:23 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "joewing";
|
|
|
|
repo = "jwm";
|
|
|
|
rev = "s${version}";
|
2017-12-19 20:31:39 +00:00
|
|
|
sha256 = "09ci3g97xmif66pp9n4sdvdmlxpw67pwp8lbjynxhdvha5pwwpv5";
|
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 = {
|
2017-08-01 21:03:30 +01: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
|
|
|
};
|
|
|
|
}
|