tA's crappy blog
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

16 linhas
429B

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