Unverified Commit 0f3893d5 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #140231 from AndersonTorres/new-elisp-packages

emacsPackages.bqn-mode: 0.0.0+unstable=2021-09-26 -> 0.0.0+unstable=2021-09-27
parents 731d6768 3536f32a
Loading
Loading
Loading
Loading
+7 −12
Original line number Diff line number Diff line
@@ -5,23 +5,18 @@

trivialBuild {
  pname = "bqn-mode";
  version = "0.0.0+unstable=2021-09-26";
  version = "0.0.0+unstable=2021-09-27";

  src = fetchFromGitHub {
    owner = "mlochbaum";
    repo = "BQN";
    rev = "97cbdc67fe6a9652c42daefadd658cc41c1e5ae3";
    sha256 = "09nmsl7gzyi56g0x459a6571c8nsafl0g350m0hk1vy2gpg6yq0p";
    owner = "AndersonTorres";
    repo = "bqn-mode";
    rev = "5bdc713ade78f11d756231739429440552d7faf8";
    hash = "sha256-ztGHWKVgMP9N4hV9k0PY9LxqXgHxkycyF3N0eZ+jIZs=";
  };

  postUnpack = ''
    sourceRoot="$sourceRoot/editors/emacs"
  '';

  meta = with lib; {
    homepage = "https://mlochbaum.github.io/BQN/editors/index.html";
    description = "Emacs mode for BQN";
    description = "Emacs mode for BQN programming language";
    license = licenses.gpl3Only;
    maintainers = [ maintainers.sternenseemann ];
    maintainers = with maintainers; [ sternenseemann AndersonTorres ];
  };
}