summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/august
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-19 14:41:25 -0400
committerfigsoda <figsoda@pm.me>2023-08-19 14:42:10 -0400
commit60195447f3135c770b3792859be8d36e5413b6c7 (patch)
treef9c1d633ccd3891f7b6870522db356d29398ffd8 /pkgs/development/compilers/august
parent4a16e2b3663dfb22a704ed36760a1e298af404cc (diff)
august: init at unstable-2023-08-13
https://github.com/yoav-lavi/august
Diffstat (limited to 'pkgs/development/compilers/august')
-rw-r--r--pkgs/development/compilers/august/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/compilers/august/default.nix b/pkgs/development/compilers/august/default.nix
new file mode 100644
index 000000000000..4dcb9038f078
--- /dev/null
+++ b/pkgs/development/compilers/august/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage {
+ pname = "august";
+ version = "unstable-2023-08-13";
+
+ src = fetchFromGitHub {
+ owner = "yoav-lavi";
+ repo = "august";
+ rev = "42b8a1bf5ca079aca1769d92315f70b193a9cd4a";
+ hash = "sha256-58DZMoRH9PBbM4sok/XbUcwSXBeqUAmFZpffdMKQ+dE=";
+ };
+
+ cargoHash = "sha256-/GvBbsSL0dZ0xTystIpb8sk1nNg5hmP4yceCHlh7EQE=";
+
+ postInstall = ''
+ mv $out/bin/{august-cli,ag}
+ '';
+
+ meta = with lib; {
+ description = "An Emmet-like language that produces JSON, TOML, or YAML";
+ homepage = "https://github.com/yoav-lavi/august";
+ license = with licenses; [ asl20 mit ];
+ maintainers = with maintainers; [ figsoda ];
+ mainProgram = "ag";
+ };
+}