nixpkgs/pkgs/servers/sql/sqlite/jdbc/default.nix

30 lines
760 B
Nix
Raw Normal View History

2018-10-15 18:45:50 +00:00
{ stdenv, fetchMavenArtifact }:
2017-11-20 10:24:05 +00:00
stdenv.mkDerivation rec {
pname = "sqlite-jdbc";
name = "${pname}-${version}";
2018-10-15 18:45:50 +00:00
version = "3.25.2";
2017-11-20 10:24:05 +00:00
2018-10-15 18:45:50 +00:00
src = fetchMavenArtifact {
groupId = "org.xerial";
artifactId = "sqlite-jdbc";
inherit version;
sha256 = "1xk5fi2wzq3jspvbdm5hvs78501i14jy3v7x6fjnh5fnpqdacpd4";
2017-11-20 10:24:05 +00:00
};
phases = [ "installPhase" ];
installPhase = ''
2018-10-15 18:45:50 +00:00
install -m444 -D ${src}/share/java/*${name}.jar "$out/share/java/${name}.jar"
2017-11-20 10:24:05 +00:00
'';
2018-10-15 18:45:50 +00:00
meta = with stdenv.lib; {
2017-11-20 10:24:05 +00:00
homepage = "https://github.com/xerial/sqlite-jdbc";
2018-10-15 18:45:50 +00:00
description = "Library for accessing and creating SQLite database files in Java";
2017-11-20 10:24:05 +00:00
license = licenses.asl20;
2018-10-15 18:45:50 +00:00
platforms = platforms.linux;
2017-11-20 10:24:05 +00:00
maintainers = with maintainers; [ jraygauthier ];
};
}