about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-07-23 11:50:32 +0200
committerPeter Simons <simons@cryp.to>2013-07-23 14:15:30 +0200
commitea3906c0f30ed184ba1de2bd2990e174ab187b19 (patch)
tree9de6d568812d2c98e5e36f560bccc3eb159eb272 /pkgs
parent05ec96b00e2210207b9aae18d4db48e2fa558f80 (diff)
downloadnixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar.gz
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar.bz2
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar.lz
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar.xz
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.tar.zst
nixlib-ea3906c0f30ed184ba1de2bd2990e174ab187b19.zip
pylint: install emacs lisp files
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 987e85ea8a6a..6905e4033b63 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -4171,6 +4171,11 @@ pythonPackages = python.modules // rec {
 
     propagatedBuildInputs = [ logilab_astng ];
 
+    postInstall = ''
+      mkdir -p $out/share/emacs/site-lisp
+      cp "elisp/"*.el $out/share/emacs/site-lisp/
+    '';
+
     meta = {
       homepage = http://www.logilab.org/project/pylint;
       description = "A bug and style checker for Python";