2021-01-19 06:50:56 +00:00
|
|
|
{lib, stdenv, fetchurl, ncurses, pkg-config, glib, libviper, libpseudo, gpm,
|
2009-11-04 22:38:26 +00:00
|
|
|
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";
|
2021-01-19 21:20:11 +00:00
|
|
|
|
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
|
|
|
'';
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ ncurses glib libviper libpseudo gpm libvterm ];
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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
|
|
|
};
|
|
|
|
}
|