rf/default.nix
2018-08-19 13:17:10 +12:00

13 lines
323 B
Nix

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