initial commit
This commit is contained in:
commit
7403dfe666
5
LICENSE
Normal file
5
LICENSE
Normal file
|
@ -0,0 +1,5 @@
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
12
README.md
Normal file
12
README.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# nix-qml-support
|
||||
Extra nix packages for QML development.
|
||||
|
||||
### tree-sitter-qmljs
|
||||
Package of [yuja/tree-sitter-qmljs](https://github.com/yuja/tree-sitter-qmljs).
|
||||
|
||||
Available as an overlay, which adds the `tree-sitter-qmljs` grammar to `tree-sitter`.
|
||||
|
||||
### qml-ts-mode
|
||||
Package of [xhcoding/qml-ts-mode](https://github.com/xhcoding/qml-ts-mode).
|
||||
|
||||
Available as `packages.<system>.qml-ts-mode`.
|
10
emacs-qml-ts-mode.nix
Normal file
10
emacs-qml-ts-mode.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ fetchFromGitHub, trivialBuild }: trivialBuild {
|
||||
pname = "qml-ts-mode";
|
||||
version = "master";
|
||||
src = fetchFromGitHub {
|
||||
owner = "xhcoding";
|
||||
repo = "qml-ts-mode";
|
||||
rev = "22e5b4ee2036d01878e463b5e4cce80957c96619";
|
||||
sha256 = "Mx3kwDx7sVwF9uQ5vOIXnfPkuOkuq3VN2KhkC/dod+4=";
|
||||
};
|
||||
}
|
26
flake.lock
Normal file
26
flake.lock
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1730531603,
|
||||
"narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"ref": "nixos-unstable",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
19
flake.nix
Normal file
19
flake.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, ... }: let
|
||||
forEachSystem = fn: nixpkgs.lib.genAttrs
|
||||
[ "x86_64-linux" "aarch64-linux" ]
|
||||
(system: fn system nixpkgs.legacyPackages.${system});
|
||||
in {
|
||||
overlays = {
|
||||
tree-sitter-qmljs = import ./qml-grammar-overlay.nix;
|
||||
};
|
||||
|
||||
packages = forEachSystem (system: pkgs: rec {
|
||||
qml-ts-mode = pkgs.emacsPackages.callPackage ./emacs-qml-ts-mode.nix {};
|
||||
});
|
||||
};
|
||||
}
|
13
qml-grammar-overlay.nix
Normal file
13
qml-grammar-overlay.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
(final: prev: {
|
||||
tree-sitter = prev.tree-sitter.override {
|
||||
tree-sitter-qmljs = {
|
||||
version = "master";
|
||||
src = final.fetchFromGitHub {
|
||||
owner = "yuja";
|
||||
repo = "tree-sitter-qmljs";
|
||||
rev = "6d4db242185721e1f5ef21fde613ca90c743ec47";
|
||||
sha256 = "S6rBQRecJvPgyWq1iydFZgDyXbm9CZBw8kxzNI0cqdw=";
|
||||
};
|
||||
};
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue