nixpkgs/pkgs/applications/window-managers/notion/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

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
}:
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";
};
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" ];
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;
};
}