mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools, qtx11extras, stdenv }:
|
|
|
|
mkDerivation rec {
|
|
pname = "notepad-next";
|
|
version = "0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dail8859";
|
|
repo = "NotepadNext";
|
|
rev = "v${version}";
|
|
hash = "sha256-fwHTsTKcVaeIv0NQQBjzfXscGDfXr3X/yH07YnYh3fU=";
|
|
# 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.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.isAarch64;
|
|
mainProgram = "NotepadNext";
|
|
};
|
|
}
|