tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
khard: add manpages to output
Anton Mosich
2 years ago
2127f215
96fa2cb5
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
khard
default.nix
+8
-2
pkgs/applications/misc/khard/default.nix
···
10
};
11
12
SETUPTOOLS_SCM_PRETEND_VERSION = version;
13
-
nativeBuildInputs = [
14
-
python3.pkgs.setuptools-scm
0
0
0
15
];
0
0
16
17
propagatedBuildInputs = with python3.pkgs; [
18
atomicwrites
···
40
description = "Console carddav client";
41
license = lib.licenses.gpl3;
42
maintainers = with lib.maintainers; [ matthiasbeyer ];
0
43
};
44
}
···
10
};
11
12
SETUPTOOLS_SCM_PRETEND_VERSION = version;
13
+
nativeBuildInputs = with python3.pkgs; [
14
+
setuptools-scm
15
+
sphinxHook
16
+
sphinx-autoapi
17
+
sphinx-autodoc-typehints
18
];
19
+
20
+
sphinxBuilders = [ "man" ];
21
22
propagatedBuildInputs = with python3.pkgs; [
23
atomicwrites
···
45
description = "Console carddav client";
46
license = lib.licenses.gpl3;
47
maintainers = with lib.maintainers; [ matthiasbeyer ];
48
+
mainProgram = "khard";
49
};
50
}