about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/haste-server/default.nix
blob: 30c98f298d41f05ed732a93f22b1f2e85e29a830 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ 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 ];
  };
}