lol
0
fork

Configure Feed

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

at 23.11-beta 27 lines 597 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "mssql-jdbc"; 5 version = "12.4.2"; 6 7 src = fetchurl { 8 url = "https://github.com/Microsoft/mssql-jdbc/releases/download/v${version}/mssql-jdbc-${version}.jre8.jar"; 9 sha256 = "sha256-JGt6SXg4Ok+czMwGpDk9xdVw/WSkNLeBxqghcM3WmRE="; 10 }; 11 12 dontUnpack = true; 13 14 installPhase = '' 15 runHook preInstall 16 17 mkdir -p $out/share/java 18 cp $src $out/share/java/mssql-jdbc.jar 19 20 runHook postInstall 21 ''; 22 23 meta = { 24 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 25 platforms = lib.platforms.unix; 26 }; 27}