87 lines
1.4 KiB
Nix
87 lines
1.4 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, fontconfig
|
||
|
, gettext
|
||
|
, groff
|
||
|
, libSM
|
||
|
, libX11
|
||
|
, libXext
|
||
|
, libXft
|
||
|
, libXinerama
|
||
|
, libXrandr
|
||
|
, lua
|
||
|
, makeWrapper
|
||
|
, pkg-config
|
||
|
, readline
|
||
|
, which
|
||
|
, xmessage
|
||
|
, xterm
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "notion";
|
||
|
version = "4.0.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "raboof";
|
||
|
repo = "notion";
|
||
|
rev = finalAttrs.version;
|
||
|
hash = "sha256-u5KoTI+OcnQu9m8/Lmsmzr8lEk9tulSE7RRFhj1oXJM=";
|
||
|
};
|
||
|
|
||
|
# error: 'PATH_MAX' undeclared
|
||
|
postPatch = ''
|
||
|
sed 1i'#include <linux/limits.h>' -i mod_notionflux/notionflux/notionflux.c
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
gettext
|
||
|
groff
|
||
|
lua
|
||
|
makeWrapper
|
||
|
pkg-config
|
||
|
which
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
fontconfig
|
||
|
libSM
|
||
|
libX11
|
||
|
libXext
|
||
|
libXft
|
||
|
libXinerama
|
||
|
libXrandr
|
||
|
lua
|
||
|
readline
|
||
|
];
|
||
|
|
||
|
outputs = [ "out" "man" ];
|
||
|
|
||
|
strictDeps = true;
|
||
|
|
||
|
buildFlags = [
|
||
|
"LUA_DIR=${lua}"
|
||
|
"X11_PREFIX=/no-such-path"
|
||
|
];
|
||
|
|
||
|
makeFlags = [
|
||
|
"NOTION_RELEASE=${finalAttrs.version}"
|
||
|
"PREFIX=${placeholder "out"}"
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
wrapProgram $out/bin/notion \
|
||
|
--prefix PATH ":" "${lib.makeBinPath [ xmessage xterm ]}" \
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Tiling tabbed window manager";
|
||
|
homepage = "https://notionwm.net";
|
||
|
license = lib.licenses.lgpl21;
|
||
|
mainProgram = "notion";
|
||
|
maintainers = with lib.maintainers; [ jfb AndersonTorres raboof ];
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
})
|