mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
august: init at unstable-2023-08-13
https://github.com/yoav-lavi/august
This commit is contained in:
parent
4a16e2b366
commit
60195447f3
30
pkgs/development/compilers/august/default.nix
Normal file
30
pkgs/development/compilers/august/default.nix
Normal file
@ -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";
|
||||||
|
};
|
||||||
|
}
|
@ -15338,6 +15338,8 @@ with pkgs;
|
|||||||
|
|
||||||
ats-acc = callPackage ../development/tools/ats-acc { };
|
ats-acc = callPackage ../development/tools/ats-acc { };
|
||||||
|
|
||||||
|
august = callPackage ../development/compilers/august { };
|
||||||
|
|
||||||
avra = callPackage ../development/compilers/avra { };
|
avra = callPackage ../development/compilers/avra { };
|
||||||
|
|
||||||
ballerina = callPackage ../development/compilers/ballerina {
|
ballerina = callPackage ../development/compilers/ballerina {
|
||||||
|
Loading…
Reference in New Issue
Block a user