formatted and fixed a transmission bug

This commit is contained in:
rasmus-kirk
2024-02-26 14:17:52 +01:00
parent 621e838f8c
commit b2ff3bb552
11 changed files with 55 additions and 36 deletions
+3 -2
View File
@@ -17,10 +17,11 @@
optionsDocNixos = nixosOptionsDoc {
inherit (evalNixos) options;
};
in pkgs.stdenv.mkDerivation {
in
pkgs.stdenv.mkDerivation {
name = "nixdocs2html";
src = ./.;
buildInputs = with pkgs; [ pandoc ];
buildInputs = with pkgs; [pandoc];
phases = ["unpackPhase" "buildPhase"];
buildPhase = ''
tmpdir=$(mktemp -d)