Skip to content

Commit

Permalink
Merge pull request NixOS#270157 from nagy/otus-lisp-2-5
Browse files Browse the repository at this point in the history
otus-lisp: 2.4 -> 2.5
  • Loading branch information
drupol authored Nov 27, 2023
2 parents b342acf + 196dbef commit e6bff45
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ 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 ];
Expand All @@ -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";
};
}
})
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit e6bff45

Please sign in to comment.