about summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
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
           ];
         };