pythonPackages.magic: Fix loading libmagic.so

Even with the previous `python.patch` file around, libmagic.so isn't
found. Instead patch it to use an absolute path, using a similar
approach that is used by the `python_magic` package (which is another
libmagic python wrapper library as well).
This commit is contained in:
Tuomas Tynkkynen 2015-07-02 23:04:52 +03:00 committed by Bjørn Forsman
parent 335cc971be
commit 2ad7463144
2 changed files with 4 additions and 12 deletions

View file

@ -1,11 +0,0 @@
--- file-5.11/python/magic.py 2011-09-22 18:57:41.000000000 +0200
+++ file-5.11/python/magic.py.1 2012-04-30 15:00:31.750213810 +0200
@@ -13,7 +13,7 @@
Loads the shared library through ctypes and returns a library
L{ctypes.CDLL} instance
"""
- return ctypes.cdll.LoadLibrary(find_library('magic'))
+ return ctypes.CDLL('libmagic.so')
_libraries = {}
_libraries['magic'] = _init()

View file

@ -7042,7 +7042,10 @@ let
src = pkgs.file.src;
patches = [ ../tools/misc/file/python.patch ];
patchPhase = ''
substituteInPlace python/magic.py --replace "find_library('magic')" "'${pkgs.file}/lib/libmagic.so'"
'';
buildInputs = with self; [ python pkgs.file ];
preConfigure = "cd python";