2020-01-17 02:47:13 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
|
|
|
, lua, gettext, which, groff, xmessage, xterm
|
|
|
|
, readline, fontconfig, libX11, libXext, libSM
|
|
|
|
, libXinerama, libXrandr, libXft
|
|
|
|
, xlibsWrapper, makeWrapper
|
2015-07-12 20:00:43 +02:00
|
|
|
}:
|
|
|
|
|
2020-01-17 02:47:13 +01:00
|
|
|
stdenv.mkDerivation rec{
|
2017-08-25 04:33:54 +02:00
|
|
|
pname = "notion";
|
2020-03-17 20:25:03 +01:00
|
|
|
version = "4.0.0";
|
2020-01-17 02:47:13 +01:00
|
|
|
|
2017-08-25 04:33:54 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raboof";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-03-17 20:25:03 +01:00
|
|
|
sha256 = "0rqfvwkj0j862hf6i4wsmb6185xibsskfj9kwy896qcpcg8w4kk7";
|
2015-07-12 20:00:43 +02:00
|
|
|
};
|
|
|
|
|
2020-01-17 02:47:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper groff ];
|
|
|
|
buildInputs = [ lua gettext which readline fontconfig libX11 libXext libSM
|
|
|
|
libXinerama libXrandr libXft xlibsWrapper ];
|
2017-08-25 04:33:54 +02:00
|
|
|
|
2020-03-17 20:25:03 +01:00
|
|
|
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" ];
|
2015-07-12 20:00:43 +02:00
|
|
|
|
2020-03-17 20:25:03 +01:00
|
|
|
makeFlags = [ "NOTION_RELEASE=${version}" "PREFIX=\${out}" ];
|
2017-08-25 04:33:54 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/notion \
|
|
|
|
--prefix PATH ":" "${xmessage}/bin:${xterm}/bin" \
|
|
|
|
'';
|
2020-01-17 02:47:13 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-17 20:25:03 +01:00
|
|
|
description = "Tiling tabbed window manager";
|
|
|
|
homepage = "https://notionwm.net";
|
2020-01-17 02:47:13 +01:00
|
|
|
license = licenses.lgpl21;
|
2020-03-17 20:25:03 +01:00
|
|
|
maintainers = with maintainers; [ jfb AndersonTorres raboof ];
|
2020-01-17 02:47:13 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2015-07-12 20:00:43 +02:00
|
|
|
}
|