Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion fixtures/example/deps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ let
name = "lazy_html";
appConfigPath = ./config;

nativeBuildInputs = [
buildInputs = [
lexbor
];

Expand Down Expand Up @@ -1593,6 +1593,9 @@ let

nativeBuildInputs = [
pkg-config
];

buildInputs = [
vips
];

Expand Down
5 changes: 4 additions & 1 deletion lib/deps_nix/derivation.ex
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ defmodule DepsNix.Derivation do

nativeBuildInputs = [
pkg-config
];

buildInputs = [
vips
];

Expand All @@ -185,7 +188,7 @@ defmodule DepsNix.Derivation do
inherit version;
name = "#{drv.name}";#{format_app_config_path(drv)}

nativeBuildInputs = [
buildInputs = [
lexbor
];

Expand Down
5 changes: 4 additions & 1 deletion test/deps_nix/special_treatment_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,9 @@ defmodule DepsNix.SpecialTreatmentTest do

nativeBuildInputs = [
pkg-config
];

buildInputs = [
vips
];

Expand Down Expand Up @@ -273,7 +276,7 @@ defmodule DepsNix.SpecialTreatmentTest do
name = "lazy_html";
appConfigPath = ./config;

nativeBuildInputs = [
buildInputs = [
lexbor
];

Expand Down
Loading