resholve: 0.6.5 -> 0.6.6, respect buildInputs

This commit is contained in:
Travis A. Everett 2021-09-26 21:45:03 -05:00 committed by Raphael Megzari
parent 407ff07598
commit 1dd78cbd74
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ let
self = (stdenv.mkDerivation ((removeAttrs attrs [ "solutions" ]) self = (stdenv.mkDerivation ((removeAttrs attrs [ "solutions" ])
// { // {
inherit pname version src; inherit pname version src;
buildInputs = [ resholve ]; buildInputs = (lib.optionals (builtins.hasAttr "buildInputs" attrs) attrs.buildInputs) ++ [ resholve ];
# enable below for verbose debug info if needed # enable below for verbose debug info if needed
# supports default python.logging levels # supports default python.logging levels

View File

@ -3,7 +3,7 @@
}: }:
rec { rec {
version = "0.6.5"; version = "0.6.6";
rSrc = rSrc =
# local build -> `make ci`; `make clean` to restore # local build -> `make ci`; `make clean` to restore
# return to remote source # return to remote source
@ -14,6 +14,6 @@ rec {
owner = "abathur"; owner = "abathur";
repo = "resholve"; repo = "resholve";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-4fTACLDsHxVGYMOm08wQs4gFWMu8kv0O12IyOZSROqw="; hash = "sha256-bupf3c9tNPAEMzFEDcvg483bSiwZFuB3ZqveG89dgkE=";
}; };
} }