nixpkgs/pkgs/applications/office/wordgrinder/default.nix

63 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper
2018-01-06 07:21:04 +03:00
, lua52Packages, libXft, ncurses, ninja, readline, zlib }:
2016-11-21 17:15:29 +03:00
stdenv.mkDerivation rec {
pname = "wordgrinder";
version = "0.8";
2016-11-21 17:15:29 +03:00
src = fetchFromGitHub {
repo = "wordgrinder";
owner = "davidgiven";
2019-09-09 02:38:31 +03:00
rev = version;
sha256 = "124d1bnn2aqs6ik8pdazzni6a0583prz9lfdjrbwyb97ipqga9pm";
2016-11-21 17:15:29 +03:00
};
makeFlags = [
"PREFIX=$(out)"
"LUA_INCLUDE=${lua52Packages.lua}/include"
"LUA_LIB=${lua52Packages.lua}/lib/liblua.so"
2020-09-13 16:57:05 +03:00
"OBJDIR=$TMP/wg-build"
];
2021-01-15 08:42:41 +03:00
preBuild = lib.optionalString stdenv.isLinux ''
makeFlagsArray+=('XFT_PACKAGE=--cflags={} --libs={-lX11 -lXft}')
'';
2016-11-21 17:15:29 +03:00
2018-01-06 07:21:04 +03:00
dontUseNinjaBuild = true;
dontUseNinjaInstall = true;
dontConfigure = true;
2018-01-06 07:21:04 +03:00
nativeBuildInputs = [
pkg-config
2018-01-06 07:21:04 +03:00
makeWrapper
ninja
];
2016-11-21 17:15:29 +03:00
buildInputs = [
lua52Packages.lua
ncurses
readline
zlib
2021-01-15 08:42:41 +03:00
] ++ lib.optionals stdenv.isLinux [
libXft
2016-11-21 17:15:29 +03:00
];
# To be able to find <Xft.h>
2021-01-15 08:42:41 +03:00
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isLinux "-I${libXft.dev}/include/X11";
2016-11-21 17:15:29 +03:00
# Binaries look for LuaFileSystem library (lfs.so) at runtime
postInstall = ''
wrapProgram $out/bin/wordgrinder --set LUA_CPATH "${lua52Packages.luafilesystem}/lib/lua/5.2/lfs.so";
2021-01-15 08:42:41 +03:00
'' + lib.optionalString stdenv.isLinux ''
2016-11-21 17:15:29 +03:00
wrapProgram $out/bin/xwordgrinder --set LUA_CPATH "${lua52Packages.luafilesystem}/lib/lua/5.2/lfs.so";
'';
meta = with lib; {
2016-11-21 17:15:29 +03:00
description = "Text-based word processor";
homepage = "https://cowlark.com/wordgrinder";
2016-11-21 17:15:29 +03:00
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
2021-01-15 08:42:41 +03:00
platforms = with lib.platforms; linux ++ darwin;
2016-11-21 17:15:29 +03:00
};
}