55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchFromGitHub,
|
|
qmake,
|
|
qttools,
|
|
qtx11extras,
|
|
stdenv,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "notepad-next";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dail8859";
|
|
repo = "NotepadNext";
|
|
rev = "v${version}";
|
|
hash = "sha256-3BCLPY104zxALd3wFH8e9PitjmFbPcOfKsLqXowXqnY=";
|
|
# External dependencies - https://github.com/dail8859/NotepadNext/issues/135
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
qttools
|
|
];
|
|
buildInputs = [ qtx11extras ];
|
|
|
|
qmakeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"src/NotepadNext.pro"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/i18n.pri \
|
|
--replace 'EXTRA_TRANSLATIONS = \' "" \
|
|
--replace '$$[QT_INSTALL_TRANSLATIONS]/qt_zh_CN.qm' ""
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mv $out/bin $out/Applications
|
|
rm -fr $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dail8859/NotepadNext";
|
|
description = "Cross-platform, reimplementation of Notepad++";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.sebtm ];
|
|
broken = stdenv.hostPlatform.isAarch64;
|
|
mainProgram = "NotepadNext";
|
|
};
|
|
}
|