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.

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