1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "Win64-${version}";
11 sha256 = "sha256-m3a9conyKN0qHSSAG8zAb3kx8ir+7dqgxm1XGjCQcfk=";
14 makeFlags = [ "PREFIX=$(out)" ];
15 preInstall = ''mkdir -p "$out/bin"'';
18 description = "Interpreter of K, APL-like programming language";
19 homepage = "https://github.com/kevinlawler/kona/";
20 maintainers = with maintainers; [ raskin ];
22 platforms = platforms.all;
23 license = licenses.isc;