2021-11-07 14:50:48 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, ncurses
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, libviper
|
|
|
|
, libpseudo
|
|
|
|
, gpm
|
|
|
|
, libvterm
|
|
|
|
}:
|
2009-04-22 23:33:24 +02:00
|
|
|
|
2009-11-04 23:38:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-07 14:50:48 +01:00
|
|
|
pname = "vwm";
|
|
|
|
version = "2.1.3";
|
2021-01-19 22:20:11 +01:00
|
|
|
|
2009-04-22 23:33:24 +02:00
|
|
|
src = fetchurl {
|
2021-11-07 14:50:48 +01:00
|
|
|
url = "mirror://sourceforge/vwm/vwm-${version}.tar.gz";
|
2009-11-04 23:38:26 +01:00
|
|
|
sha256 = "1r5wiqyfqwnyx7dfihixlnavbvg8rni36i4gq169aisjcg7laxaf";
|
2009-04-22 23:33:24 +02:00
|
|
|
};
|
|
|
|
|
2021-11-28 17:21:39 +01:00
|
|
|
postPatch = ''
|
2009-04-22 23:33:24 +02:00
|
|
|
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
|
2021-11-28 17:21:39 +01:00
|
|
|
|
|
|
|
# Fix ncurses-6.3 support:
|
|
|
|
substituteInPlace vwm_bkgd.c --replace \
|
|
|
|
'mvwprintw(window,height-1,width-(strlen(version_str)),version_str);' \
|
|
|
|
'mvwprintw(window,height-1,width-(strlen(version_str)),"%s", version_str);'
|
2009-04-22 23:33:24 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin $out/include
|
2009-04-22 23:33:24 +02:00
|
|
|
'';
|
2021-01-19 22:20:11 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ ncurses glib libviper libpseudo gpm libvterm ];
|
2021-01-19 22:20:11 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://vwm.sourceforge.net/";
|
2009-04-22 23:33:24 +02:00
|
|
|
description = "Dynamic window manager for the console";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2009-04-22 23:33:24 +02:00
|
|
|
};
|
|
|
|
}
|