Files
nixpkgs/pkgs/by-name/ha/haste-server/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
920 B
Nix

{
lib,
nixosTests,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage {
pname = "haste-server";
version = "unstable-2023-03-06";
src = fetchFromGitHub {
owner = "toptal";
repo = "haste-server";
rev = "b52b394bad909ddf151073987671e843540d91d6";
hash = "sha256-AVoz5MY5gNxQrHtDMPbQ85IjmHii1v6C2OXpEQj9zC8=";
};
npmDepsHash = "sha256-FEuqKbblAts0WTnGI9H9bRBOwPvkahltra1zl3sMPJs=";
dontNpmBuild = true;
postInstall = ''
install -Dt "$out/share/haste-server" about.md
rm -rf "$out/lib/node_modules/haste/node_modules/.bin/"
'';
passthru = {
tests = {
inherit (nixosTests) haste-server;
};
};
meta = with lib; {
description = "Open source pastebin written in Node.js";
homepage = "https://github.com/toptal/haste-server";
license = licenses.mit;
mainProgram = "haste-server";
maintainers = with maintainers; [ mkg20001 ];
};
}