From 00e9dc3583ef52ca8276bb20086163892c4c8c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cain=C3=A3=20Costa?= Date: Mon, 24 Jul 2023 10:05:39 -0300 Subject: [PATCH] chore: add metadata to nix recipe --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 95c41469..70d872b9 100644 --- a/flake.nix +++ b/flake.nix @@ -29,6 +29,13 @@ src = pkgs.lib.cleanSourceWith { src = self; }; cargoLock.lockFile = ./Cargo.lock; + + meta = with pkgs.lib; { + description = "Cardano smart contract language and toolchain"; + homepage = "https://github.com/aiken-lang/aiken"; + license = licenses.asl20; + mainProgram = "aiken"; + }; }; commonCategory = y: builtins.map (x: x // { category = y; });