rf/default.nix
2018-08-20 12:51:34 +12:00

13 lines
323 B
Nix

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