nixpkgs/pkgs/tools/nix/nixpkgs-fmt/default.nix

22 lines
590 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2019-08-23 16:12:50 +02:00
rustPlatform.buildRustPackage rec {
pname = "nixpkgs-fmt";
2021-03-29 13:25:10 +02:00
version = "1.2.0";
2019-08-23 16:12:50 +02:00
src = fetchFromGitHub {
owner = "nix-community";
repo = pname;
rev = "v${version}";
2021-03-29 13:25:10 +02:00
sha256 = "0dqirvn8pq6ssxjlf6rkqcsx6ndasws93lz2v9f9s01k9ny8x8mq";
2019-08-23 16:12:50 +02:00
};
cargoSha256 = "0mm79hfh8p1rs02pkpcv25p59b24q1rymwh11yxry4d4f12b6aw0";
2019-08-23 16:12:50 +02: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 ];
};
}