misconstruedⓂ️monologues https://blog.bemoe.online
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.

12 lines
305B

  1. { mkDerivation, base, hakyll, hakyll-favicon, stdenv }:
  2. mkDerivation {
  3. pname = "murasite";
  4. version = "0.1.0.0";
  5. src = ./.;
  6. isLibrary = false;
  7. isExecutable = true;
  8. executableHaskellDepends = [ base hakyll hakyll-favicon ];
  9. license = "unknown";
  10. hydraPlatforms = stdenv.lib.platforms.none;
  11. }