mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
mkYarnPackage,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
nodejs,
|
|
fetchYarnDeps,
|
|
}:
|
|
mkYarnPackage rec {
|
|
pname = "prettierd";
|
|
version = "0.25.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fsouza";
|
|
repo = "prettierd";
|
|
rev = "v${version}";
|
|
hash = "sha256-3lvFZ5/p+1kPnHIR2PlQtCY3SVo1rs8IuBigLaabxAE=";
|
|
};
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = src + "/yarn.lock";
|
|
hash = "sha256-Ti2b102pzUKB6Xy3LwZ7DlrnW0cRscgNLTUIAKz+6Us=";
|
|
};
|
|
|
|
packageJSON = ./package.json;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
export HOME=$(mktemp -d)
|
|
yarn --offline build
|
|
runHook postBuild
|
|
'';
|
|
|
|
# prettierd needs to be wrapped with nodejs so that it can be executed
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/prettierd" --prefix PATH : "${nodejs}/bin"
|
|
'';
|
|
|
|
doDist = false;
|
|
|
|
meta = {
|
|
mainProgram = "prettierd";
|
|
description = "Prettier, as a daemon, for improved formatting speed";
|
|
homepage = "https://github.com/fsouza/prettierd";
|
|
license = lib.licenses.isc;
|
|
changelog = "https://github.com/fsouza/prettierd/blob/${src.rev}/CHANGELOG.md";
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
maintainers = with lib.maintainers; [
|
|
NotAShelf
|
|
n3oney
|
|
];
|
|
};
|
|
}
|