diff options
-rw-r--r-- | flake.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix index 052c2c2..7cf2f03 100644 --- a/flake.nix +++ b/flake.nix @@ -17,15 +17,12 @@ packages."x86_64-linux".vokobe = naersk'.buildPackage { src = ./.; - meta = { + meta = with pkgs.lib; { description = "A minimal static site generator tailored to my needs."; homepage = "https://git.emile.space/hanemile/vokobe"; - license = { - spdxId = "MIT"; - fullName = "MIT License"; - }; - platforms = nixpkgs.platforms.all; - maintainers = with nixpkgs.maintainers; [ + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ hanemile ]; }; |