소스 검색

Drop old install technique, add metadata

Samuel W. Flint 4 년 전
부모
커밋
5cd2a68bee
1개의 변경된 파일6개의 추가작업 그리고 5개의 파일을 삭제
  1. 6 5
      default.nix

+ 6 - 5
default.nix

@@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
   buildInputs = [ texlive.combined.scheme-full ];
   buildInputs = [ texlive.combined.scheme-full ];
 
 
   buildPhase = "make";
   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>";
+  };
 }
 }