rf/default.nix

13 lines
354 B
Nix
Raw Normal View History

2018-09-03 21:32:43 -04:00
{ mkDerivation, base, filepath, hakyll, hakyll-favicon, stdenv }:
2018-08-18 07:24:54 -04:00
mkDerivation {
pname = "rf";
2018-09-03 19:49:15 -04:00
version = "0.1.3.1";
2018-08-18 07:24:54 -04:00
src = ./.;
isLibrary = false;
isExecutable = true;
2018-09-03 21:32:43 -04:00
executableHaskellDepends = [ base filepath hakyll hakyll-favicon ];
2018-08-18 07:24:54 -04:00
homepage = "regularflolloping.com";
description = "tA's blog";
license = stdenv.lib.licenses.bsd3;
}