about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/signald/0001-Fetch-buildconfig-during-gradle-build-inside-Nix-FOD.patch
blob: e23aded6d0e7e0e8e86ac59b255fe43abfad07aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From 232c692240b9c52b95bd38ba7aecb11e7077cf31 Mon Sep 17 00:00:00 2001
From: Maximilian Bosch <maximilian@mbosch.me>
Date: Sat, 26 Feb 2022 12:33:13 +0100
Subject: [PATCH] Fetch buildconfig during gradle build inside Nix FOD

---
 build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/build.gradle b/build.gradle
index cbb587f..3b06e80 100644
--- a/build.gradle
+++ b/build.gradle
@@ -82,6 +82,9 @@ static String getVersion() {
 
 repositories {
     maven {url "https://gitlab.com/api/v4/groups/6853927/-/packages/maven"} // https://gitlab.com/groups/signald/-/packages
+    maven {
+      url "https://plugins.gradle.org/m2/"
+    }
     mavenCentral()
 }
 
@@ -102,6 +105,8 @@ dependencies {
     implementation 'io.prometheus:simpleclient_httpserver:0.14.1'
     implementation 'com.squareup.okhttp3:logging-interceptor:4.9.3'
     implementation 'io.sentry:sentry:5.6.1'
+    implementation 'com.github.gmazzo.buildconfig:com.github.gmazzo.buildconfig.gradle.plugin:3.0.3'
+    implementation 'org.jetbrains.kotlin:kotlin-scripting-jvm:1.4.31'
     testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
 }
 
-- 
2.33.1