tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
textpieces: apply patch to fix build
eymeric
2 years ago
5ebe96df
edeff1bd
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
textpieces
default.nix
+8
-1
pkgs/tools/text/textpieces/default.nix
···
1
1
{ lib
2
2
, stdenv
3
3
, fetchFromGitHub
4
4
+
, fetchpatch
4
5
, python3
5
6
, meson
6
7
, ninja
···
61
62
pythonEnv
62
63
];
63
64
65
65
+
patches = [
66
66
+
(fetchpatch {
67
67
+
url = "https://github.com/liferooter/textpieces/commit/26348782b9fddc5f2ffb9497cf18ec8ce9592960.patch";
68
68
+
hash = "sha256-w86PCeDhoyMPm63GCBa2Ax8KfCdlxtmGeUrmt1ZSz1k=";
69
69
+
})
70
70
+
];
71
71
+
64
72
postPatch = ''
65
73
chmod +x build-aux/meson/postinstall.py
66
74
patchShebangs build-aux/meson/postinstall.py
···
74
82
license = licenses.gpl3Plus;
75
83
platforms = platforms.linux;
76
84
maintainers = with maintainers; [ zendo ];
77
77
-
broken = true; # https://github.com/liferooter/textpieces/issues/130
78
85
};
79
86
})