diff --git a/.gitignore b/.gitignore index 20c1c3e..c020757 100755 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ target +result # Compiled files a.out diff --git a/default.nix b/default.nix index 665aaac..efcf2ab 100644 --- a/default.nix +++ b/default.nix @@ -25,4 +25,26 @@ pkgs.rustPlatform.buildRustPackage rec { ]; NIX_LDFLAGS = "-L${libiconvPath} -L${./lib}"; + + meta = with lib; { + homepage = "https://osmon-lang.uz"; + description = '' + Highly experimental programming language developed by @orzklv."; + ''; + licencse = licenses.mit; + platforms = with platforms; linux ++ darwin; + + maintainers = [ + { + name = "Sokhibjon Orzikulov"; + email = "sakhib@orzklv.uz"; + handle = "orzklv"; + github = "orzklv"; + githubId = 54666588; + keys = [{ + fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8"; + }]; + } + ]; + }; }