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.

cabal.nix 354B

5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
123456789101112
  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. }