mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
23 lines
520 B
Nix
23 lines
520 B
Nix
{ lib
|
|
, trivialBuild
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
trivialBuild {
|
|
pname = "bqn-mode";
|
|
version = "0.pre+unstable=2021-09-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AndersonTorres";
|
|
repo = "bqn-mode";
|
|
rev = "5bdc713ade78f11d756231739429440552d7faf8";
|
|
hash = "sha256-ztGHWKVgMP9N4hV9k0PY9LxqXgHxkycyF3N0eZ+jIZs=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Emacs mode for BQN programming language";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ sternenseemann AndersonTorres ];
|
|
};
|
|
}
|