tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
sqlite-jdbc: 3.25.2 -> 3.49.1.0
emaryn
1 year ago
2b94af0a
35f9e775
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sq
sqlite-jdbc
package.nix
+7
-7
pkgs/by-name/sq/sqlite-jdbc/package.nix
···
6
6
7
7
stdenv.mkDerivation rec {
8
8
pname = "sqlite-jdbc";
9
9
-
version = "3.25.2";
9
9
+
version = "3.49.1.0";
10
10
11
11
src = fetchMavenArtifact {
12
12
groupId = "org.xerial";
13
13
artifactId = "sqlite-jdbc";
14
14
inherit version;
15
15
-
sha256 = "1xk5fi2wzq3jspvbdm5hvs78501i14jy3v7x6fjnh5fnpqdacpd4";
15
15
+
hash = "sha256-XIYJ0so0HeuMb3F3iXS1ukmVx9MtfHyJ2TkqPnLDkpE=";
16
16
};
17
17
18
18
installPhase = ''
19
19
install -m444 -D ${src}/share/java/*${pname}-${version}.jar "$out/share/java/${pname}-${version}.jar"
20
20
'';
21
21
22
22
-
meta = with lib; {
22
22
+
meta = {
23
23
homepage = "https://github.com/xerial/sqlite-jdbc";
24
24
description = "Library for accessing and creating SQLite database files in Java";
25
25
-
license = licenses.asl20;
26
26
-
sourceProvenance = with sourceTypes; [ binaryBytecode ];
27
27
-
platforms = platforms.linux;
28
28
-
maintainers = with maintainers; [ jraygauthier ];
25
25
+
license = lib.licenses.asl20;
26
26
+
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
27
27
+
platforms = lib.platforms.linux;
28
28
+
maintainers = with lib.maintainers; [ jraygauthier ];
29
29
};
30
30
}