Skip to content

Commit

Permalink
prettierd: move to by-name; nixfmt-rfc-style
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed Jul 6, 2024
1 parent f32a8ac commit b7442e8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ lib
, mkYarnPackage
, fetchFromGitHub
, makeWrapper
, nodejs
, fetchYarnDeps
,
{
lib,
mkYarnPackage,
fetchFromGitHub,
makeWrapper,
nodejs,
fetchYarnDeps,
}:
mkYarnPackage rec {
pname = "prettierd";
Expand Down Expand Up @@ -40,13 +40,16 @@ mkYarnPackage rec {

doDist = false;

meta = with lib; {
meta = {
mainProgram = "prettierd";
description = "Prettier, as a daemon, for improved formatting speed";
homepage = "https://github.com/fsouza/prettierd";
license = licenses.isc;
license = lib.licenses.isc;
changelog = "https://github.com/fsouza/prettierd/blob/${src.rev}/CHANGELOG.md";
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ NotAShelf n3oney ];
platforms = with lib.platforms; linux ++ darwin;
maintainers = with lib.maintainers; [
NotAShelf
n3oney
];
};
}
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11870,8 +11870,6 @@ with pkgs;

pretender = callPackage ../tools/security/pretender { };

prettierd = callPackage ../development/tools/prettierd { };

pretty-simple = callPackage ../development/tools/pretty-simple { };

prettyping = callPackage ../tools/networking/prettyping { };
Expand Down

0 comments on commit b7442e8

Please sign in to comment.