Skip to content

Commit

Permalink
treewide: use lowdown-unsandboxed where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
emilazy committed Oct 7, 2024
1 parent dc32d18 commit b370a68
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/blockchains/clightning/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
, automake
, gettext
, libtool
, lowdown
, lowdown-unsandboxed
, protobuf
, unzip
, which
Expand All @@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
# when building on darwin we need cctools to provide the correct libtool
# as libwally-core detects the host as darwin and tries to add the -static
# option to libtool, also we have to add the modified gsed package.
nativeBuildInputs = [ autoconf autogen automake gettext libtool lowdown protobuf py3 unzip which ]
nativeBuildInputs = [ autoconf autogen automake gettext libtool lowdown-unsandboxed protobuf py3 unzip which ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools darwin.autoSignDarwinBinariesHook ];

buildInputs = [ gmp libsodium sqlite zlib jq ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/ce/certspotter/package.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib
, fetchFromGitHub
, buildGoModule
, lowdown
, lowdown-unsandboxed
}:

buildGoModule rec {
Expand All @@ -19,7 +19,7 @@ buildGoModule rec {

ldflags = [ "-s" "-w" ];

nativeBuildInputs = [ lowdown ];
nativeBuildInputs = [ lowdown-unsandboxed ];

postInstall = ''
cd man
Expand Down
3 changes: 2 additions & 1 deletion pkgs/tools/package-management/lix/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ assert (hash == null) -> (src != null);
libcpuid,
libsodium,
lowdown,
lowdown-unsandboxed,
lsof,
mercurial,
mdbook,
Expand Down Expand Up @@ -119,7 +120,7 @@ stdenv.mkDerivation {
]
++ lib.optionals isLegacyParser [ bison ]
++ lib.optionals enableDocumentation [
(lib.getBin lowdown)
(lib.getBin lowdown-unsandboxed)
mdbook
mdbook-linkcheck
doxygen
Expand Down
3 changes: 2 additions & 1 deletion pkgs/tools/package-management/nix/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ in
, libxml2
, libxslt
, lowdown
, lowdown-unsandboxed
, toml11
, man
, mdbook
Expand Down Expand Up @@ -122,7 +123,7 @@ self = stdenv.mkDerivation {
docbook_xsl_ns
docbook5
] ++ lib.optionals (enableDocumentation && atLeast24) [
(lib.getBin lowdown)
(lib.getBin lowdown-unsandboxed)
mdbook
] ++ lib.optionals (atLeast213 && enableDocumentation) [
mdbook-linkcheck
Expand Down

0 comments on commit b370a68

Please sign in to comment.