textpieces: apply patch to fix build

eymeric 5ebe96df edeff1bd

+8 -1
+8 -1
pkgs/tools/text/textpieces/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , python3 5 , meson 6 , ninja ··· 61 pythonEnv 62 ]; 63 64 postPatch = '' 65 chmod +x build-aux/meson/postinstall.py 66 patchShebangs build-aux/meson/postinstall.py ··· 74 license = licenses.gpl3Plus; 75 platforms = platforms.linux; 76 maintainers = with maintainers; [ zendo ]; 77 - broken = true; # https://github.com/liferooter/textpieces/issues/130 78 }; 79 })
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 + , fetchpatch 5 , python3 6 , meson 7 , ninja ··· 62 pythonEnv 63 ]; 64 65 + patches = [ 66 + (fetchpatch { 67 + url = "https://github.com/liferooter/textpieces/commit/26348782b9fddc5f2ffb9497cf18ec8ce9592960.patch"; 68 + hash = "sha256-w86PCeDhoyMPm63GCBa2Ax8KfCdlxtmGeUrmt1ZSz1k="; 69 + }) 70 + ]; 71 + 72 postPatch = '' 73 chmod +x build-aux/meson/postinstall.py 74 patchShebangs build-aux/meson/postinstall.py ··· 82 license = licenses.gpl3Plus; 83 platforms = platforms.linux; 84 maintainers = with maintainers; [ zendo ]; 85 }; 86 })