chore: add metadata to nix recipe

This commit is contained in:
Cainã Costa 2023-07-24 10:05:39 -03:00 committed by Lucas
parent 6768a26e5e
commit 00e9dc3583
1 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,13 @@
src = pkgs.lib.cleanSourceWith { src = self; }; src = pkgs.lib.cleanSourceWith { src = self; };
cargoLock.lockFile = ./Cargo.lock; 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; }); commonCategory = y: builtins.map (x: x // { category = y; });