mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
resholve: 0.6.5 -> 0.6.6, respect buildInputs
This commit is contained in:
parent
407ff07598
commit
1dd78cbd74
@ -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
|
||||||
|
@ -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=";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user