tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
app2unit: fix missing man page
Ali Rizvi
3 months ago
25140af8
c4e90b66
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ap
app2unit
package.nix
+6
-1
pkgs/by-name/ap/app2unit/package.nix
···
5
scdoc,
6
fetchFromGitHub,
7
nix-update-script,
0
8
}:
9
stdenvNoCC.mkDerivation (finalAttrs: {
10
pname = "app2unit";
···
19
20
passthru.updateScript = nix-update-script { };
21
22
-
nativeBuildInputs = [ scdoc ];
0
0
0
23
24
buildPhase = ''
25
scdoc < app2unit.1.scd > app2unit.1
···
27
28
installPhase = ''
29
install -Dt $out/bin app2unit
0
30
31
for link in \
32
app2unit-open \
···
5
scdoc,
6
fetchFromGitHub,
7
nix-update-script,
8
+
installShellFiles,
9
}:
10
stdenvNoCC.mkDerivation (finalAttrs: {
11
pname = "app2unit";
···
20
21
passthru.updateScript = nix-update-script { };
22
23
+
nativeBuildInputs = [
24
+
scdoc
25
+
installShellFiles
26
+
];
27
28
buildPhase = ''
29
scdoc < app2unit.1.scd > app2unit.1
···
31
32
installPhase = ''
33
install -Dt $out/bin app2unit
34
+
installManPage app2unit.1
35
36
for link in \
37
app2unit-open \