tA's crappy blog
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
354B

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