summary refs log tree commit diff
path: root/pkgs/by-name/ar/arrpc/package.nix
blob: eeb4dd4fef25053a4120732ec29a2a163d41bb1f (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
40
41
{ lib
, buildNpmPackage
, fetchFromGitHub
, fetchpatch
}:

buildNpmPackage {
  pname = "arrpc";
  version = "3.2.0";

  src = fetchFromGitHub {
    owner = "OpenAsar";
    repo = "arrpc";
    # Release commits are not tagged
    # release: 3.2.0
    rev = "9c3e981437b75606c74ef058c67d1a8c083ce49a";
    hash = "sha256-tsO58q6tqqXCJLjZmLQGt1VtKsuoqWmh5SlnuDtJafg=";
  };

  # Make installation less cumbersome
  # Remove after next release
  patches = [
    (fetchpatch {
      # https://github.com/OpenAsar/arrpc/pull/50
      url = "https://github.com/OpenAsar/arrpc/commit/7fa6c90204450eb3952ce9cddfecb0a5ba5e4313.patch";
      hash = "sha256-qFlrbe2a4x811wpmWUcGDe2CPlt9x3HI+/t0P2v4kPc=";
    })
  ];

  npmDepsHash = "sha256-vxx0w6UjwxIK4cgpivtjNbIgkb4wKG4ijSHdP/FeQZ4=";

  dontNpmBuild = true;

  meta = with lib; {
    description = "Open Discord RPC server for atypical setups";
    homepage = "https://arrpc.openasar.dev/";
    license = licenses.mit;
    maintainers = with maintainers; [ anomalocaris ];
    mainProgram = "arrpc";
  };
}