tA's crappy blog
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
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. }