Merge pull request #108507 from Ericson2314/ott-mode
ott-mode: Factor our from ott
This commit is contained in:
commit
05b5b5491e
@ -114,6 +114,19 @@
|
|||||||
org-mac-link =
|
org-mac-link =
|
||||||
callPackage ./org-mac-link { };
|
callPackage ./org-mac-link { };
|
||||||
|
|
||||||
|
ott-mode = self.trivialBuild {
|
||||||
|
pname = "ott-mod";
|
||||||
|
|
||||||
|
inherit (external.ott) src version;
|
||||||
|
|
||||||
|
postUnpack = "mv $sourceRoot/emacs/ott-mode.el $sourceRoot";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Standalone package providing ott-mode without building ott and with compiled bytecode.";
|
||||||
|
inherit (external.Agda.meta) homepage license;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
perl-completion =
|
perl-completion =
|
||||||
callPackage ./perl-completion { };
|
callPackage ./perl-completion { };
|
||||||
|
|
||||||
|
@ -16,7 +16,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installTargets = "ott.install";
|
installTargets = "ott.install";
|
||||||
|
|
||||||
postInstall = "opaline -prefix $out";
|
postInstall = ''
|
||||||
|
opaline -prefix $out
|
||||||
|
''
|
||||||
|
# There is `emacsPackages.ott-mode` for this now.
|
||||||
|
+ ''
|
||||||
|
rm -r $out/share/emacs
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A tool for the working semanticist";
|
description = "A tool for the working semanticist";
|
||||||
|
@ -21423,7 +21423,7 @@ in
|
|||||||
inherit
|
inherit
|
||||||
autoconf automake editorconfig-core-c git libffi libpng pkgconfig
|
autoconf automake editorconfig-core-c git libffi libpng pkgconfig
|
||||||
poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages
|
poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages
|
||||||
libtool zeromq openssl;
|
libtool zeromq openssl ott;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user