ops/maint/update_nixpkgs: remove propagatedBuildInputs

This commit is contained in:
Luke Granger-Brown 2020-11-25 13:19:35 +00:00
parent a589ca3e1f
commit 4c0778487f

View file

@ -2,7 +2,7 @@
let let
inherit (depot) pkgs; inherit (depot) pkgs;
mercurial = (pkgs.mercurial.overridePythonAttrs (origAttrs: { mercurial = (pkgs.mercurial.overridePythonAttrs (origAttrs: {
propagatedBuildInputs = origAttrs.propagatedBuildInputs ++ [pkgs.python3Packages.hg-evolve]; propagatedBuildInputs = [pkgs.python3Packages.hg-evolve];
})); }));
updateNixpkgs = pkgs.runCommandNoCC "update_nixpkgs" { updateNixpkgs = pkgs.runCommandNoCC "update_nixpkgs" {
buildInputs = with pkgs; [ makeWrapper ]; buildInputs = with pkgs; [ makeWrapper ];