mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
26 lines
623 B
Nix
26 lines
623 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|