rf/default.nix

16 lines
429 B
Nix
Raw Normal View History

2018-08-25 00:38:47 -04:00
{ mkDerivation, base, binary, filepath, hakyll, hakyll-favicon, imagemagick
2018-08-24 22:31:46 -04:00
, stdenv
}:
2018-08-18 07:24:54 -04:00
mkDerivation {
pname = "rf";
2018-08-25 00:38:47 -04:00
version = "0.1.2.1";
2018-08-18 07:24:54 -04:00
src = ./.;
isLibrary = false;
isExecutable = true;
2018-08-25 00:38:47 -04:00
executableHaskellDepends = [ base binary filepath hakyll hakyll-favicon ];
2018-09-03 18:58:04 -04:00
#executableSystemDepends = [ imagemagick ];
2018-08-18 07:24:54 -04:00
homepage = "regularflolloping.com";
description = "tA's blog";
license = stdenv.lib.licenses.bsd3;
}