Browse Source

Drop old install technique, add metadata

Samuel W. Flint 4 years ago
parent
commit
5cd2a68bee
1 changed files with 6 additions and 5 deletions
  1. 6 5
      default.nix

+ 6 - 5
default.nix

@@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
   buildInputs = [ texlive.combined.scheme-full ];
 
   buildPhase = "make";
-  
-  # installPhase = ''
-#   mkdir $out
-#   cp document.pdf $out/
-# '';
+
+  meta = with lib; {
+    description = "Open Source Cookbook";
+    license = licenses.cc-by-sa-40;
+    author = "Samuel Flint <swflint@flintfam.org>";
+  };
 }