kdbplus: 3.3 -> 3.6

This commit is contained in:
Kai Wohlfahrt 2019-09-12 09:30:13 +01:00 committed by Austin Seipp
parent cf3e491cef
commit dc6447812b
1 changed files with 6 additions and 6 deletions

View File

@ -8,17 +8,17 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "kdbplus"; pname = "kdbplus";
version = "3.3"; version = "3.6";
src = requireFile { src = requireFile rec {
message = '' message = ''
Nix can't download kdb+ for you automatically. Go to Nix can't download kdb+ for you automatically. Go to
http://kx.com and download the free, 32-bit version for http://kx.com and download the free, 32-bit version for
Linux. Then run "nix-prefetch-url file://\$PWD/linux.zip" in Linux. Then run "nix-prefetch-url file://\$PWD/${name}" in
the directory where you saved it. Note you need version 3.3. the directory where you saved it. Note you need version ${version}.
''; '';
name = "linux.zip"; name = "linuxx86.zip";
sha256 = "5fd0837599e24f0f437a8314510888a86ab0787684120a8fcf592299800aa940"; sha256 = "0w6znd9warcqx28vf648n0vgmxyyy9kvsfpsfw37d1kp5finap4p";
}; };
dontStrip = true; dontStrip = true;