Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
645 B
Nix
30 lines
645 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kona";
|
|
version = "20211225";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kevinlawler";
|
|
repo = "kona";
|
|
rev = "Win64-${version}";
|
|
sha256 = "sha256-m3a9conyKN0qHSSAG8zAb3kx8ir+7dqgxm1XGjCQcfk=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
preInstall = ''mkdir -p "$out/bin"'';
|
|
|
|
meta = with lib; {
|
|
description = "Interpreter of K, APL-like programming language";
|
|
homepage = "https://github.com/kevinlawler/kona/";
|
|
maintainers = with maintainers; [ raskin ];
|
|
mainProgram = "k";
|
|
platforms = platforms.all;
|
|
license = licenses.isc;
|
|
};
|
|
}
|