Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / sy / syn2mas / package.nix
blob38e78d4bf92b286756526051c9ce35aca69b5dab
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 }:
6 buildNpmPackage rec {
7   pname = "syn2mas";
8   version = "0.9.0";
10   src = fetchFromGitHub {
11     owner = "matrix-org";
12     repo = "matrix-authentication-service";
13     rev = "v${version}";
14     hash = "sha256-e5JlkcSJ44iE+pVnGQpGiSNahxUcIFeaPyOjp9E3eD0=";
15   };
17   sourceRoot = "${src.name}/tools/syn2mas";
19   npmDepsHash = "sha256-47tFcKgzH/2WEX99rs7F79TXBXjqVwEumg5aLkx86Fw=";
21   dontBuild = true;
23   meta = with lib; {
24     description = "Tool to help with the migration of a Matrix Synapse installation to the Matrix Authentication Service";
25     homepage = "https://github.com/matrix-org/matrix-authentication-service/tree/main/tools/syn2mas";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ teutat3s ];
28     mainProgram = "syn2mas";
29   };