biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / ma1sd / default.nix
blob1e16cc516e0a8cf433a98cd4ca6c5d37585b4ac9
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , fetchpatch
5 , jre
6 , git
7 , gradle_7
8 , perl
9 , makeWrapper
12 let
13   pname = "ma1sd";
14   version = "2.5.0";
16   src = fetchFromGitHub {
17     owner = "ma1uta";
18     repo = "ma1sd";
19     rev = version;
20     hash = "sha256-K3kaujAhWsRQuTMW3SZOnE7Rmu8+tDXaxpLrb45OI4A=";
21   };
23   gradle = gradle_7;
25   patches = [
26     # https://github.com/ma1uta/ma1sd/pull/122
27     (fetchpatch {
28       name = "java-16-compatibility.patch";
29       url = "https://github.com/ma1uta/ma1sd/commit/be2e2e97ce21741ca6a2e29a06f5748f45dd414e.patch";
30       hash = "sha256-dvCeK/0InNJtUG9CWrsg7BE0FGWtXuHo3TU0iFFUmIk=";
31     })
32   ];
34   deps = stdenv.mkDerivation {
35     pname = "${pname}-deps";
36     inherit src version patches;
37     nativeBuildInputs = [ gradle perl git ];
39     buildPhase = ''
40       export MA1SD_BUILD_VERSION=${version}
41       export GRADLE_USER_HOME=$(mktemp -d);
42       gradle --no-daemon build -x test
43     '';
45     # perl code mavenizes pathes (com.squareup.okio/okio/1.13.0/a9283170b7305c8d92d25aff02a6ab7e45d06cbe/okio-1.13.0.jar -> com/squareup/okio/okio/1.13.0/okio-1.13.0.jar)
46     installPhase = ''
47       find $GRADLE_USER_HOME/caches/modules-2 -type f -regex '.*\.\(jar\|pom\)' \
48         | perl -pe 's#(.*/([^/]+)/([^/]+)/([^/]+)/[0-9a-f]{30,40}/([^/\s]+))$# ($x = $2) =~ tr|\.|/|; "install -Dm444 $1 \$out/$x/$3/$4/$5" #e' \
49         | sh
50     '';
52     dontStrip = true;
54     outputHashAlgo = "sha256";
55     outputHashMode = "recursive";
56     outputHash = "sha256-Px8FLnREBC6pADcEPn/GfhrtGnmZqjXIX7l1xPjiCvQ=";
57   };
60 stdenv.mkDerivation {
61   inherit pname src version patches;
62   nativeBuildInputs = [ gradle perl makeWrapper ];
63   buildInputs = [ jre ];
65   postPatch = ''
66     substituteInPlace build.gradle \
67       --replace 'gradlePluginPortal()' "" \
68       --replace 'mavenCentral()' "mavenLocal(); maven { url '${deps}' }"
69   '';
71   buildPhase = ''
72     runHook preBuild
73     export MA1SD_BUILD_VERSION=${version}
74     export GRADLE_USER_HOME=$(mktemp -d)
76     gradle --offline --no-daemon build -x test
77     runHook postBuild
78   '';
80   installPhase = ''
81     runHook preInstall
82     install -D build/libs/source.jar $out/lib/ma1sd.jar
83     makeWrapper ${jre}/bin/java $out/bin/ma1sd --add-flags "-jar $out/lib/ma1sd.jar"
84     runHook postInstall
85   '';
87   meta = with lib; {
88     description = "a federated matrix identity server; fork of mxisd";
89     homepage = "https://github.com/ma1uta/ma1sd";
90     changelog = "https://github.com/ma1uta/ma1sd/releases/tag/${version}";
91     sourceProvenance = with sourceTypes; [
92       fromSource
93       binaryBytecode  # deps
94     ];
95     license = licenses.agpl3Only;
96     maintainers = with maintainers; [ mguentner ];
97     platforms = platforms.all;
98     mainProgram = "ma1sd";
99   };