nixpkgs-fmt: fix erroneous debug output (#86335)

Prior to this, when used in conjunction with e.g. `format-all-mode`,
garbage like

    node: NODE_STRING@[8934; 9139), indent: IndentLevel { level: 3, alignment: 0 }

would be written to the file.
This commit is contained in:
Cole Helbling 2020-05-02 16:36:49 -07:00 committed by GitHub
parent f2d1041b6b
commit 440110b83f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, rustPlatform, fetchFromGitHub }:
{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
rustPlatform.buildRustPackage rec {
pname = "nixpkgs-fmt";
version = "0.8.0";
@ -10,6 +10,15 @@ rustPlatform.buildRustPackage rec {
sha256 = "09lhi8aidw9qf94n07mgs2nfac32a96wkx50glj35dhn06iwzwqr";
};
patches = [
# Fixes debug output on stdout mangling some files. Fixed in next release.
# https://github.com/nix-community/nixpkgs-fmt/issues/201
(fetchpatch {
url = "https://github.com/nix-community/nixpkgs-fmt/commit/648f46e1d5507592b246311618f467da282bf1b5.patch";
sha256 = "18n4criyl0lydxmjqfkcmwx0pniyqzfgfxcjwz6czqwmx5y7b4rb";
})
];
cargoSha256 = "15m40d9354412h51zn806pxsqjai48xiw8chf8slbi0cjxd268j9";
meta = with lib; {