mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #36777 from knedlsepp/fix-pythonPackages.discid-on-darwin
pythonPackages.discid: fix darwin build
This commit is contained in:
commit
8c7a1b4cf5
1 changed files with 7 additions and 5 deletions
|
@ -10,15 +10,17 @@ buildPythonPackage rec {
|
|||
sha256 = "78a3bf6c8377fdbe3d85e914a209ff97aa43e35605779639847b510ced31f7b9";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace discid/libdiscid.py \
|
||||
--replace '_open_library(_LIB_NAME)' "_open_library('${libdiscid}/lib/libdiscid.so.0')"
|
||||
'';
|
||||
patchPhase =
|
||||
let extension = stdenv.hostPlatform.extensions.sharedLibrary; in
|
||||
''
|
||||
substituteInPlace discid/libdiscid.py \
|
||||
--replace "_open_library(_LIB_NAME)" \
|
||||
"_open_library('${libdiscid}/lib/libdiscid${extension}')"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python binding of libdiscid";
|
||||
homepage = "https://python-discid.readthedocs.org/";
|
||||
license = licenses.lgpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue