jtc: fix build

This commit is contained in:
Mario Rodas 2022-05-20 04:20:00 +00:00
parent 772e39b237
commit 1d32db2557

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub }:
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
stdenv.mkDerivation rec {
pname = "jtc";
@ -11,6 +11,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-VATRlOOV4wBInLOm9J0Dp2vhtL5mb0Yxdl/ya0JiqEU=";
};
patches = [
# Fix building with Clang. Removing with next release.
(fetchpatch {
url = "https://github.com/ldn-softdev/jtc/commit/92a5116e5524c0b6d2f539db7b5cc9fdd7c5b8ab.patch";
sha256 = "sha256-AAvDH0XsT8/CAguG611/odg0m1HR+veC0jbAw6KLHLM=";
})
];
buildPhase = ''
runHook preBuild