mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
otus-lisp: init at 2.4
This commit is contained in:
parent
1de5c5027b
commit
cb589b7ec8
25
pkgs/development/compilers/otus-lisp/default.nix
Normal file
25
pkgs/development/compilers/otus-lisp/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -3122,6 +3122,8 @@ with pkgs;
|
||||
|
||||
owl-lisp = callPackage ../development/compilers/owl-lisp { };
|
||||
|
||||
otus-lisp = callPackage ../development/compilers/otus-lisp { };
|
||||
|
||||
ascii = callPackage ../tools/text/ascii { };
|
||||
|
||||
asciinema = callPackage ../tools/misc/asciinema { };
|
||||
|
Loading…
Reference in New Issue
Block a user