tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
junixsocket-native-common: init at 2.10.1
Volker Diels-Grabsch
5 months ago
72427e25
67f0915d
+16
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ju
junixsocket-native-common
package.nix
+16
pkgs/by-name/ju/junixsocket-native-common/package.nix
···
1
1
+
{
2
2
+
fetchMavenArtifact,
3
3
+
junixsocket-common,
4
4
+
lib,
5
5
+
}:
6
6
+
7
7
+
fetchMavenArtifact {
8
8
+
groupId = "com.kohlschutter.junixsocket";
9
9
+
artifactId = "junixsocket-native-common";
10
10
+
inherit (junixsocket-common) version;
11
11
+
hash = "sha256-ASbOC68c61de9ReAfU0rFLnzLwYYAgThLsc6tKdyVno=";
12
12
+
meta = junixsocket-common.meta // {
13
13
+
description = "Binaries of the native JNI library for junixsocket for common platforms";
14
14
+
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
15
15
+
};
16
16
+
}