File tree 2 files changed +28
-0
lines changed
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ { lib , stdenv , fetchurl } :
2
+
3
+ stdenv . mkDerivation rec {
4
+ version = "3.20.0" ;
5
+ pname = "sqlite-jdbc" ;
6
+ name = "${ pname } -${ version } " ;
7
+
8
+ src = fetchurl {
9
+ url = "https://bitbucket.org/xerial/${ pname } /downloads/${ name } .jar" ;
10
+ sha256 = "0wxfxnq2ghiwy2mwz3rljgmy1lciafhrw80lprvqz6iw8l51qfql" ;
11
+ } ;
12
+
13
+ phases = [ "installPhase" ] ;
14
+
15
+ installPhase = ''
16
+ install -D "${ src } " "$out/share/java/${ name } .jar"
17
+ '' ;
18
+
19
+ meta = with lib ; {
20
+ homepage = "https://github.com/xerial/sqlite-jdbc" ;
21
+ description = "SQLite JDBC Driver" ;
22
+ license = licenses . asl20 ;
23
+ maintainers = with maintainers ; [ jraygauthier ] ;
24
+ } ;
25
+ }
26
+
Original file line number Diff line number Diff line change @@ -10742,6 +10742,8 @@ with pkgs;
10742
10742
10743
10743
sqlite-interactive = appendToName "interactive" (sqlite.override { interactive = true; }).bin;
10744
10744
10745
+ sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
10746
+
10745
10747
sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher {
10746
10748
readline = null;
10747
10749
ncurses = null;
You can’t perform that action at this time.
0 commit comments