forked from mirrors/nixpkgs
658d3e9af8
These packages were announced as published under Apple Public Source License 2.0 ('apsl20' short handle) but they are actually published under the Apache License 2.0 ('asl20' short handle)
27 lines
633 B
Nix
27 lines
633 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "synapse-admin";
|
|
version = "0.8.3";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/Awesome-Technologies/synapse-admin/releases/download/${version}/synapse-admin-${version}.tar.gz";
|
|
hash = "sha256-LAdMxzUffnykiDHvQYu9uNxK4428Q9CxQY2q02AcUco=";
|
|
};
|
|
|
|
installPhase = ''
|
|
cp -r . $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Admin UI for Synapse Homeservers";
|
|
homepage = "https://github.com/Awesome-Technologies/synapse-admin";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
};
|
|
}
|