mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
112 lines
2.5 KiB
Nix
112 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
python3,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
wrapQtAppsHook,
|
|
makeDesktopItem,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "leo-editor";
|
|
version = "6.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leo-editor";
|
|
repo = "leo-editor";
|
|
rev = version;
|
|
sha256 = "sha256-nK6JMR4XrxZxvLOAsYjuyHQo/sob+OLSk/8U3zZ/Iyo=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
makeWrapper
|
|
python3
|
|
];
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyqt6
|
|
docutils
|
|
];
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "leo-editor";
|
|
exec = "leo %U";
|
|
icon = "leoapp32";
|
|
type = "Application";
|
|
comment = meta.description;
|
|
desktopName = "Leo";
|
|
genericName = "Text Editor";
|
|
categories = [
|
|
"Application"
|
|
"Development"
|
|
"IDE"
|
|
];
|
|
startupNotify = false;
|
|
mimeTypes = [
|
|
"text/plain"
|
|
"text/asp"
|
|
"text/x-c"
|
|
"text/x-script.elisp"
|
|
"text/x-fortran"
|
|
"text/html"
|
|
"application/inf"
|
|
"text/x-java-source"
|
|
"application/x-javascript"
|
|
"application/javascript"
|
|
"text/ecmascript"
|
|
"application/x-ksh"
|
|
"text/x-script.ksh"
|
|
"application/x-tex"
|
|
"text/x-script.rexx"
|
|
"text/x-pascal"
|
|
"text/x-script.perl"
|
|
"application/postscript"
|
|
"text/x-script.scheme"
|
|
"text/x-script.guile"
|
|
"text/sgml"
|
|
"text/x-sgml"
|
|
"application/x-bsh"
|
|
"application/x-sh"
|
|
"application/x-shar"
|
|
"text/x-script.sh"
|
|
"application/x-tcl"
|
|
"text/x-script.tcl"
|
|
"application/x-texinfo"
|
|
"application/xml"
|
|
"text/xml"
|
|
"text/x-asm"
|
|
];
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/icons/hicolor/32x32/apps"
|
|
cp leo/Icons/leoapp32.png "$out/share/icons/hicolor/32x32/apps"
|
|
|
|
mkdir -p "$out/share/applications"
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
|
|
|
mkdir -p $out/share/leo-editor
|
|
mv * $out/share/leo-editor
|
|
|
|
makeWrapper ${python3.interpreter} $out/bin/leo \
|
|
--set PYTHONPATH "$PYTHONPATH:$out/share/leo-editor" \
|
|
--add-flags "-O $out/share/leo-editor/launchLeo.py"
|
|
|
|
wrapQtApp $out/bin/leo
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://leoeditor.com";
|
|
description = "A powerful folding editor";
|
|
longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
leonardoce
|
|
kashw2
|
|
];
|
|
mainProgram = "leo";
|
|
};
|
|
}
|