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

View file

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