rf/default.nix

16 lines
413 B
Nix
Raw Normal View History

2018-08-24 22:31:46 -04:00
{ mkDerivation, base, filepath, hakyll, hakyll-favicon, imagemagick
, stdenv
}:
2018-08-18 07:24:54 -04:00
mkDerivation {
pname = "rf";
2018-08-23 00:53:32 -04:00
version = "0.1.2.0";
2018-08-18 07:24:54 -04:00
src = ./.;
isLibrary = false;
isExecutable = true;
2018-08-22 21:14:11 -04:00
executableHaskellDepends = [ base filepath hakyll hakyll-favicon ];
2018-08-24 22:31:46 -04:00
executableSystemDepends = [ imagemagick ];
2018-08-18 07:24:54 -04:00
homepage = "regularflolloping.com";
description = "tA's blog";
license = stdenv.lib.licenses.bsd3;
}