jshon: fix musl build
This commit is contained in:
parent
f2b1359848
commit
3cd6970658
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, jansson }:
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, jansson }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jshon";
|
pname = "jshon";
|
||||||
@ -13,7 +13,15 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ jansson ];
|
buildInputs = [ jansson ];
|
||||||
|
|
||||||
patchPhase =
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
# https://github.com/keenerd/jshon/pull/62
|
||||||
|
url = "https://github.com/keenerd/jshon/commit/96b4e9dbf578be7b31f29740b608aa7b34df3318.patch";
|
||||||
|
sha256 = "0kwbn3xb37iqb5y1n8vhzjiwlbg5jmki3f38pzakc24kzc5ksmaa";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch =
|
||||||
''
|
''
|
||||||
substituteInPlace Makefile --replace "/usr/" "/"
|
substituteInPlace Makefile --replace "/usr/" "/"
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user