evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sy / syn2mas / package.nix
blob667134361d53f8141f25140848568c27b162fde9
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 }:
6 buildNpmPackage rec {
7   pname = "syn2mas";
8   version = "0.12.0";
10   src = fetchFromGitHub {
11     owner = "element-hq";
12     repo = "matrix-authentication-service";
13     rev = "v${version}";
14     hash = "sha256-QLtyYxV2yXHJtwWgGcyi7gRcKypYoy9Z8bkEuTopVXc=";
15   };
17   sourceRoot = "${src.name}/tools/syn2mas";
19   npmDepsHash = "sha256-pRa5qqLsI8Hx9v5tMPDkehczXZjWWAOjfDfLLh2V6Q4=";
21   dontBuild = true;
23   meta = {
24     description = "Tool to help with the migration of a Matrix Synapse installation to the Matrix Authentication Service";
25     homepage = "https://github.com/element-hq/matrix-authentication-service/tree/main/tools/syn2mas";
26     license = lib.licenses.agpl3Only;
27     maintainers = with lib.maintainers; [ teutat3s ];
28     mainProgram = "syn2mas";
29   };