1 { lib, stdenv, fetchFromGitHub, xxd }:
3 stdenv.mkDerivation (finalAttrs: {
7 src = fetchFromGitHub {
8 owner = "yuriy-chumak";
10 rev = finalAttrs.version;
11 hash = "sha256-xwn2cvtw3co7MJ4J0FraEtZhKWVaaaoJYMrohyFF+us=";
14 nativeBuildInputs = [ xxd ];
16 makeFlags = [ "PREFIX=$(out)" ];
19 description = "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 ];