2009-11-04 22:38:26 +00:00
|
|
|
{stdenv, fetchurl, ncurses, pkgconfig, glib, libviper, libpseudo, gpm,
|
|
|
|
libvterm}:
|
2009-04-22 21:33:24 +00:00
|
|
|
|
2009-11-04 22:38:26 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vwm-2.1.3";
|
2009-04-22 21:33:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-11-04 22:38:26 +00:00
|
|
|
url = "mirror://sourceforge/vwm/${name}.tar.gz";
|
|
|
|
sha256 = "1r5wiqyfqwnyx7dfihixlnavbvg8rni36i4gq169aisjcg7laxaf";
|
2009-04-22 21:33:24 +00: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 21:33:24 +00:00
|
|
|
'';
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses glib libviper libpseudo gpm libvterm ];
|
2009-04-22 21:33:24 +00:00
|
|
|
|
2015-05-27 19:56:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-22 21:33:24 +00:00
|
|
|
homepage = http://vwm.sourceforge.net/;
|
|
|
|
description = "Dynamic window manager for the console";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2009-04-22 21:33:24 +00:00
|
|
|
};
|
|
|
|
}
|