nix: flake: add meta information in package

This commit is contained in:
Bruno BELANYI 2021-03-30 18:09:11 +00:00
parent 9de7c783ae
commit d38e4556e1

View file

@ -37,6 +37,13 @@
defaultPackage = naersk-lib.buildPackage {
src = ./.;
pname = "lohr";
meta = with pkgs.lib; {
description = "A Git mirroring tool";
homepage = "https://github.com/alarsyo/lohr";
license = with licenses; [ mit asl20 ];
platforms = platforms.unix;
};
};
defaultApp = flake-utils.lib.mkApp {