Unverified Commit e6bff456 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #270157 from nagy/otus-lisp-2-5

otus-lisp: 2.4 -> 2.5
parents b342acf2 196dbefb
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, xxd }:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "otus-lisp";
  version = "2.4";
  version = "2.5";

  src = fetchFromGitHub {
    owner = "yuriy-chumak";
    repo = "ol";
    rev = version;
    sha256 = "sha256-+6qH1BhvMkuG2rUOfo9qMjMjhCib9KONQTBWS27c3Ts=";
    rev = finalAttrs.version;
    hash = "sha256-xwn2cvtw3co7MJ4J0FraEtZhKWVaaaoJYMrohyFF+us=";
  };

  nativeBuildInputs = [ xxd ];
@@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
    license = with lib.licenses; [ mit lgpl3Only ]; # dual licensed
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ nagy ];
    mainProgram = "ol";
  };
}
})
+0 −2
Original line number Diff line number Diff line
@@ -3310,8 +3310,6 @@ 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 { };