3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/nix/nixpkgs-fmt/default.nix

31 lines
973 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
2019-08-23 15:12:50 +01:00
rustPlatform.buildRustPackage rec {
pname = "nixpkgs-fmt";
2020-04-26 02:38:44 +01:00
version = "0.8.0";
2019-08-23 15:12:50 +01:00
src = fetchFromGitHub {
owner = "nix-community";
repo = pname;
rev = "v${version}";
2020-04-26 02:38:44 +01:00
sha256 = "09lhi8aidw9qf94n07mgs2nfac32a96wkx50glj35dhn06iwzwqr";
2019-08-23 15:12:50 +01:00
};
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";
})
];
2020-04-26 02:38:44 +01:00
cargoSha256 = "15m40d9354412h51zn806pxsqjai48xiw8chf8slbi0cjxd268j9";
2019-08-23 15:12:50 +01:00
meta = with lib; {
description = "Nix code formatter for nixpkgs";
homepage = "https://nix-community.github.io/nixpkgs-fmt";
license = licenses.asl20;
maintainers = with maintainers; [ zimbatm ];
};
}