1 { lib, stdenv, fetchFromGitHub, xxd }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "yuriy-chumak";
11 sha256 = "sha256-+6qH1BhvMkuG2rUOfo9qMjMjhCib9KONQTBWS27c3Ts=";
14 nativeBuildInputs = [ xxd ];
16 makeFlags = [ "PREFIX=$(out)" ];
19 description = "A purely functional dialect of Lisp";
20 homepage = "https://yuriy-chumak.github.io/ol/";
21 license = with lib.licenses; [ mit lgpl3Only ]; # dual licensed
22 platforms = lib.platforms.unix;
23 maintainers = with lib.maintainers; [ nagy ];