about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/matter-compiler/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/matter-compiler/default.nix')
-rw-r--r--nixpkgs/pkgs/development/compilers/matter-compiler/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/compilers/matter-compiler/default.nix b/nixpkgs/pkgs/development/compilers/matter-compiler/default.nix
new file mode 100644
index 000000000000..4b3ff844977e
--- /dev/null
+++ b/nixpkgs/pkgs/development/compilers/matter-compiler/default.nix
@@ -0,0 +1,18 @@
+{ lib, bundlerApp }:
+
+bundlerApp {
+  pname = "matter_compiler";
+  gemdir = ./.;
+  exes = [ "matter_compiler" ];
+
+  meta = with lib; {
+    description = ''
+      Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool.
+      It composes an API blueprint from its serialzed AST media-type.
+    '';
+    homepage    = https://github.com/apiaryio/matter_compiler/;
+    license     = licenses.mit;
+    maintainers = with maintainers; [ rvlander manveru ];
+    platforms   = platforms.unix;
+  };
+}