tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
darwin.file_cmds: add libmd for install (#354897)
Emily
1 year ago
4e4c5898
173e2625
+4
-1
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
darwin
apple-source-releases
file_cmds
meson.build.in
package.nix
+2
-1
pkgs/os-specific/darwin/apple-source-releases/file_cmds/meson.build.in
···
15
15
16
16
bzip2 = dependency('bzip2')
17
17
xz = dependency('liblzma')
18
18
+
libmd = dependency('libmd')
18
19
libxo = dependency('libxo')
19
20
zlib = dependency('zlib')
20
21
···
173
174
174
175
executable(
175
176
'install-bin', # Meson reserves the name “install”, so use a different name and rename in install phase.
176
176
-
dependencies : [ copyfile ],
177
177
+
dependencies : [ copyfile, libmd ],
177
178
install : true,
178
179
sources: [
179
180
'install/xinstall.c',
+2
pkgs/os-specific/darwin/apple-source-releases/file_cmds/package.nix
···
4
4
bzip2,
5
5
copyfile,
6
6
less,
7
7
+
libmd,
7
8
libutil,
8
9
libxo,
9
10
mkAppleDerivation,
···
104
105
buildInputs = [
105
106
bzip2
106
107
copyfile
108
108
+
libmd
107
109
libutil
108
110
libxo
109
111
removefile