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
{ lib
2
, stdenv
3
, fetchFromGitHub
0
4
, python3
5
, meson
6
, ninja
···
61
pythonEnv
62
];
63
0
0
0
0
0
0
0
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 ];
0
85
};
86
})