depot/third_party/nixpkgs/pkgs/servers/haste-server/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

39 lines
858 B
Nix

{ lib
, nixosTests
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
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
'';
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 ];
};
}