From 7beab0f407b735bb9a9be2c753ab2946a81cccdf Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Sun, 26 Nov 2023 15:30:00 +0100 Subject: otus-lisp: move to by-name structure --- pkgs/by-name/ot/otus-lisp/package.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/by-name/ot/otus-lisp/package.nix (limited to 'pkgs/by-name/ot') diff --git a/pkgs/by-name/ot/otus-lisp/package.nix b/pkgs/by-name/ot/otus-lisp/package.nix new file mode 100644 index 000000000000..5338734e6c6d --- /dev/null +++ b/pkgs/by-name/ot/otus-lisp/package.nix @@ -0,0 +1,25 @@ +{ lib, stdenv, fetchFromGitHub, xxd }: + +stdenv.mkDerivation rec { + pname = "otus-lisp"; + version = "2.4"; + + src = fetchFromGitHub { + owner = "yuriy-chumak"; + repo = "ol"; + rev = version; + sha256 = "sha256-+6qH1BhvMkuG2rUOfo9qMjMjhCib9KONQTBWS27c3Ts="; + }; + + nativeBuildInputs = [ xxd ]; + + makeFlags = [ "PREFIX=$(out)" ]; + + meta = { + description = "A purely functional dialect of Lisp"; + homepage = "https://yuriy-chumak.github.io/ol/"; + license = with lib.licenses; [ mit lgpl3Only ]; # dual licensed + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nagy ]; + }; +} -- cgit 1.4.1