mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
41 lines
960 B
Nix
41 lines
960 B
Nix
{ 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 {
|
|
url = "https://github.com/OpenAsar/arrpc/pull/50.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";
|
|
};
|
|
}
|