2009-11-04 22:38:26 +00:00
|
|
|
{stdenv, fetchurl, ncurses, pkgconfig, glib, libviper, libpseudo, gpm,
|
|
|
|
libvterm}:
|
2009-04-22 22:33:24 +01:00
|
|
|
|
2009-11-04 22:38:26 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vwm-2.1.3";
|
2009-04-22 22:33:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-11-04 22:38:26 +00:00
|
|
|
url = "mirror://sourceforge/vwm/${name}.tar.gz";
|
|
|
|
sha256 = "1r5wiqyfqwnyx7dfihixlnavbvg8rni36i4gq169aisjcg7laxaf";
|
2009-04-22 22:33:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
sed -i -e s@/usr/local@$out@ \
|
|
|
|
-e s@/usr/lib@$out/lib@ \
|
|
|
|
-e 's@tic vwmterm@tic -o '$out/lib/terminfo' vwmterm@' \
|
|
|
|
-e /ldconfig/d Makefile modules/*/Makefile vwm.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin $out/include
|
2009-04-22 22:33:24 +01:00
|
|
|
'';
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses glib libviper libpseudo gpm libvterm ];
|
2009-04-22 22:33:24 +01:00
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://vwm.sourceforge.net/";
|
2009-04-22 22:33:24 +01:00
|
|
|
description = "Dynamic window manager for the console";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2009-04-22 22:33:24 +01:00
|
|
|
};
|
|
|
|
}
|