rf/default.nix

13 lines
323 B
Nix
Raw Normal View History

2018-08-18 07:24:54 -04:00
{ mkDerivation, base, filepath, hakyll, stdenv }:
mkDerivation {
pname = "rf";
2018-08-19 20:51:34 -04:00
version = "0.1.1.1";
2018-08-18 07:24:54 -04:00
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base filepath hakyll ];
homepage = "regularflolloping.com";
description = "tA's blog";
license = stdenv.lib.licenses.bsd3;
}