rf/default.nix
2018-08-25 16:38:47 +12:00

16 行
425 B
Nix

{ mkDerivation, base, binary, filepath, hakyll, hakyll-favicon, imagemagick
, stdenv
}:
mkDerivation {
pname = "rf";
version = "0.1.2.1";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base binary filepath hakyll hakyll-favicon ];
librarySystemDepends = [ imagemagick ];
homepage = "regularflolloping.com";
description = "tA's blog";
license = stdenv.lib.licenses.bsd3;
}