tA's crappy blog
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
413B

  1. { mkDerivation, base, filepath, hakyll, hakyll-favicon, imagemagick
  2. , stdenv
  3. }:
  4. mkDerivation {
  5. pname = "rf";
  6. version = "0.1.2.0";
  7. src = ./.;
  8. isLibrary = false;
  9. isExecutable = true;
  10. executableHaskellDepends = [ base filepath hakyll hakyll-favicon ];
  11. executableSystemDepends = [ imagemagick ];
  12. homepage = "regularflolloping.com";
  13. description = "tA's blog";
  14. license = stdenv.lib.licenses.bsd3;
  15. }