1a22a73dde
Jwm requests a specific version of gettext. Since the current version of gettext is higher, the build fails. Gettext supports to request a minimum version (since 0.19.6). A patch is introduces which requests the minimum version 0.19.6.
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, automake, autoconf, libtool, gettext
|
|
, which, xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp
|
|
, libXmu, libpng, libjpeg, expat, xorgproto, librsvg, freetype, fontconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jwm";
|
|
version = "1685";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joewing";
|
|
repo = "jwm";
|
|
rev = "s${version}";
|
|
sha256 = "1kyvy022sij898g2hm5spy5vq0kw6aqd7fsnawl2xyh06gwh29wg";
|
|
};
|
|
|
|
patches = [ ./0001-Fix-Gettext-Requirement.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXinerama
|
|
libXpm
|
|
libXft
|
|
xorg.libXrender
|
|
libXau
|
|
libXdmcp
|
|
libXmu
|
|
libpng
|
|
libjpeg
|
|
expat
|
|
xorgproto
|
|
librsvg
|
|
freetype
|
|
fontconfig
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
meta = {
|
|
homepage = "http://joewing.net/projects/jwm/";
|
|
description = "Joe's Window Manager is a light-weight X11 window manager";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|