1 { lib, stdenv, fetchFromGitHub, cmake, xorg }:
3 stdenv.mkDerivation rec {
5 version = "2021-04-14";
6 src = fetchFromGitHub {
9 rev = "91fe7d51f9d607bcedde0e78e435ee188a8c84c0";
10 hash = "sha256-Y+ngep/xHw6RCU8XVRYSWH6S+9hJ74z50pGpIqS2CjM=";
12 nativeBuildInputs = [ cmake ];
13 buildInputs = [ xorg.libX11 ];
16 find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \;
20 description = "Medley Interlisp virtual machine";
21 homepage = "https://interlisp.org/";
22 changelog = "https://github.com/Interlisp/maiko/releases";
23 license = licenses.mit;
24 maintainers = with maintainers; [ ehmry ];
25 inherit (xorg.libX11.meta) platforms;