tA's crappy blog
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
425B

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