lol

sqlite-jdbc: 3.25.2 -> 3.49.1.0

emaryn 2b94af0a 35f9e775

+7 -7
+7 -7
pkgs/by-name/sq/sqlite-jdbc/package.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "sqlite-jdbc"; 9 - version = "3.25.2"; 10 11 src = fetchMavenArtifact { 12 groupId = "org.xerial"; 13 artifactId = "sqlite-jdbc"; 14 inherit version; 15 - sha256 = "1xk5fi2wzq3jspvbdm5hvs78501i14jy3v7x6fjnh5fnpqdacpd4"; 16 }; 17 18 installPhase = '' 19 install -m444 -D ${src}/share/java/*${pname}-${version}.jar "$out/share/java/${pname}-${version}.jar" 20 ''; 21 22 - meta = with lib; { 23 homepage = "https://github.com/xerial/sqlite-jdbc"; 24 description = "Library for accessing and creating SQLite database files in Java"; 25 - license = licenses.asl20; 26 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 27 - platforms = platforms.linux; 28 - maintainers = with maintainers; [ jraygauthier ]; 29 }; 30 }
··· 6 7 stdenv.mkDerivation rec { 8 pname = "sqlite-jdbc"; 9 + version = "3.49.1.0"; 10 11 src = fetchMavenArtifact { 12 groupId = "org.xerial"; 13 artifactId = "sqlite-jdbc"; 14 inherit version; 15 + hash = "sha256-XIYJ0so0HeuMb3F3iXS1ukmVx9MtfHyJ2TkqPnLDkpE="; 16 }; 17 18 installPhase = '' 19 install -m444 -D ${src}/share/java/*${pname}-${version}.jar "$out/share/java/${pname}-${version}.jar" 20 ''; 21 22 + meta = { 23 homepage = "https://github.com/xerial/sqlite-jdbc"; 24 description = "Library for accessing and creating SQLite database files in Java"; 25 + license = lib.licenses.asl20; 26 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 + platforms = lib.platforms.linux; 28 + maintainers = with lib.maintainers; [ jraygauthier ]; 29 }; 30 }