nixpkgs/pkgs/applications/window-managers/jwm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

2022-05-29 13:48:29 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, automake, autoconf, gettext
, which, xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp
2022-05-29 13:48:29 +00:00
, libXmu, libpng, libjpeg, expat, xorgproto, librsvg, freetype, fontconfig, pango }:
stdenv.mkDerivation rec {
pname = "jwm";
2022-05-29 13:48:29 +00:00
version = "2.4.2";
2016-10-27 09:52:23 +00:00
src = fetchFromGitHub {
owner = "joewing";
repo = "jwm";
2021-11-08 00:42:56 +00:00
rev = "v${version}";
2022-05-29 13:48:29 +00:00
sha256 = "sha256-rvuz2Pmon3XBqRMgDwZNrQlWDyLNSK30JPmmQTlN+Rs=";
};
2022-05-29 13:48:29 +00:00
nativeBuildInputs = [ pkg-config gettext which automake autoconf ];
buildInputs = [
libX11
libXext
libXinerama
libXpm
libXft
xorg.libXrender
libXau
libXdmcp
libXmu
libpng
libjpeg
expat
xorgproto
librsvg
freetype
fontconfig
2022-05-29 13:48:29 +00:00
pango
];
2016-04-12 15:18:40 +00:00
2022-05-29 13:48:29 +00:00
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
2016-04-12 15:18:40 +00:00
enableParallelBuilding = true;
meta = {
homepage = "http://joewing.net/projects/jwm/";
2016-06-02 13:11:05 +00:00
description = "Joe's Window Manager is a light-weight X11 window manager";
2021-11-08 00:42:56 +00:00
license = lib.licenses.mit;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
};
}