lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sqlite-jdbc: init at 3.20.0 (#31816)

authored by

jraygauthier and committed by
Jörg Thalheim
3f057db6 53973938

+28
+26
pkgs/servers/sql/sqlite/jdbc/default.nix
··· 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 +
+2
pkgs/top-level/all-packages.nix
··· 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;