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

48 lines
1.6 KiB
Nix
Raw Normal View History

2019-09-03 22:51:52 +01:00
{ stdenv, fetchFromGitHub, cmake, gettext, perl, asciidoc
, libjpeg, libtiff, libungif, libpng, imlib, expat
, freetype, fontconfig, pkgconfig, gdk-pixbuf, gdk-pixbuf-xlib, glib
, mkfontdir, libX11, libXft, libXext, libXinerama
, libXrandr, libICE, libSM, libXpm, libXdmcp, libxcb
2019-09-03 22:51:52 +01:00
, libpthreadstubs, pcre, libXdamage, libXcomposite, libXfixes
, libsndfile, fribidi }:
2020-04-06 23:53:55 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "icewm";
2020-11-13 16:53:31 +00:00
version = "1.9.2";
2019-09-03 22:51:52 +01:00
src = fetchFromGitHub {
owner = "bbidulock";
2020-10-10 05:59:09 +01:00
repo = pname;
rev = version;
2020-11-13 16:53:31 +00:00
sha256 = "16a9ikknjmhrrlc5r6z2ilkjj5vzyfk4ypwab39mg7vcmd7jzc41";
};
2019-09-03 22:51:52 +01:00
nativeBuildInputs = [ cmake pkgconfig perl asciidoc ];
2019-09-03 22:51:52 +01:00
buildInputs = [
2020-10-10 05:59:09 +01:00
gettext libjpeg libtiff libungif libpng imlib expat freetype fontconfig
gdk-pixbuf gdk-pixbuf-xlib glib mkfontdir libX11 libXft libXext libXinerama
libXrandr libICE libSM libXpm libXdmcp libxcb libpthreadstubs pcre
libsndfile fribidi libXdamage libXcomposite libXfixes ];
2019-09-03 22:51:52 +01:00
cmakeFlags = [ "-DPREFIX=$out" "-DCFGDIR=/etc/icewm" ];
2019-09-03 22:51:52 +01:00
# install legacy themes
postInstall = ''
cp -r ../lib/themes/{gtk2,Natural,nice,nice2,warp3,warp4,yellowmotif} $out/share/icewm/themes/
'';
2020-04-06 23:53:55 +01:00
meta = {
description = "A simple, lightweight X window manager";
longDescription = ''
IceWM is a window manager for the X Window System. The goal of
IceWM is speed, simplicity, and not getting in the user's way.
'';
2020-04-06 23:53:55 +01:00
homepage = "https://www.ice-wm.org/";
license = licenses.lgpl2;
maintainers = [ maintainers.AndersonTorres ];
2018-03-19 21:22:25 +00:00
platforms = platforms.linux;
};
}