Explorar o código

Drop old install technique, add metadata

Samuel W. Flint %!s(int64=4) %!d(string=hai) anos
pai
achega
5cd2a68bee
Modificáronse 1 ficheiros con 6 adicións e 5 borrados
  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>";
+  };
 }