pdk: format with nixfmt-rfc-style

This commit is contained in:
Anthony Roussel 2024-03-24 16:40:37 +01:00
parent dc611ed73d
commit 5ccb83a906
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 7 additions and 6 deletions

View File

@ -1,8 +1,9 @@
{ lib,
{
bundlerApp,
bundlerUpdateScript,
gnumake,
lib,
makeWrapper,
gnumake
}:
bundlerApp {
@ -18,10 +19,10 @@ bundlerApp {
passthru.updateScript = bundlerUpdateScript "pdk";
meta = with lib; {
meta = {
description = "Puppet Development Kit";
homepage = "https://github.com/puppetlabs/pdk";
license = licenses.asl20;
maintainers = with maintainers; [ netali ];
homepage = "https://github.com/puppetlabs/pdk";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ netali ];
};
}