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

View File

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