Skip to content

Commit 55e09e1

Browse files
junixsocket{,-native}-common: init at 2.10.1 (#427538)
2 parents d3f432c + 72427e2 commit 55e09e1

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
fetchMavenArtifact,
3+
lib,
4+
}:
5+
6+
fetchMavenArtifact {
7+
groupId = "com.kohlschutter.junixsocket";
8+
artifactId = "junixsocket-common";
9+
version = "2.10.1";
10+
hash = "sha256-GeX3YVrSKT81Mrw/mRsxOWwRYYNOidmmqgx975OcZyk=";
11+
meta = {
12+
homepage = "https://kohlschutter.github.io/junixsocket/";
13+
description = "Java/JNI library that allows the use of Unix Domain Sockets (AF_UNIX sockets) and other socket types, such as AF_TIPC and AF_VSOCK, from Java, using the standard Socket API";
14+
license = lib.licenses.asl20;
15+
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
16+
maintainers = [ lib.maintainers.vog ];
17+
};
18+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
fetchMavenArtifact,
3+
junixsocket-common,
4+
lib,
5+
}:
6+
7+
fetchMavenArtifact {
8+
groupId = "com.kohlschutter.junixsocket";
9+
artifactId = "junixsocket-native-common";
10+
inherit (junixsocket-common) version;
11+
hash = "sha256-ASbOC68c61de9ReAfU0rFLnzLwYYAgThLsc6tKdyVno=";
12+
meta = junixsocket-common.meta // {
13+
description = "Binaries of the native JNI library for junixsocket for common platforms";
14+
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
15+
};
16+
}

0 commit comments

Comments
 (0)