about summary refs log tree commit diff
path: root/pkgs/development/compilers/august/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/august/default.nix')
-rw-r--r--pkgs/development/compilers/august/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/compilers/august/default.nix b/pkgs/development/compilers/august/default.nix
deleted file mode 100644
index 2e8aec11763c..000000000000
--- a/pkgs/development/compilers/august/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ 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 = "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";
-  };
-}