3
0
Fork 0
forked from mirrors/nixpkgs

emacsPackages.org-mac-link: remove

It is already part of org-contrib package.
This commit is contained in:
AndersonTorres 2021-09-14 17:42:41 -03:00
parent 1664f4fcbb
commit 813319ff8d
2 changed files with 0 additions and 34 deletions

View file

@ -282,8 +282,6 @@
nano-theme = callPackage ./nano-theme { };
org-mac-link = callPackage ./org-mac-link { };
perl-completion = callPackage ./perl-completion { };
pod-mode = callPackage ./pod-mode { };

View file

@ -1,32 +0,0 @@
{ lib, stdenv, fetchurl, emacs }:
stdenv.mkDerivation {
pname = "org-mac-link";
version = "1.2";
src = fetchurl {
url = "https://raw.githubusercontent.com/stuartsierra/org-mode/master/contrib/lisp/org-mac-link.el";
sha256 = "1gkzlfbhg289r1hbqd25szan1wizgk6s99h9xxjip5bjv0jywcx5";
};
dontUnpack = true;
buildInputs = [ emacs ];
buildPhase = ''
cp $src org-mac-link.el
emacs --batch -f batch-byte-compile org-mac-link.el
'';
installPhase = ''
install -d $out/share/emacs/site-lisp
install org-mac-link.el $out/share/emacs/site-lisp
'';
meta = {
description = "Insert org-mode links to items selected in various Mac apps";
homepage = "https://orgmode.org/worg/org-contrib/org-mac-link.html";
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
};
}