about summary refs log tree commit diff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..37bc31f
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,11 @@
+{ mkDerivation, base, hakyll, lib }:
+mkDerivation {
+  pname = "dybiec-info";
+  version = "0.1.0.0";
+  src = ./.;
+  isLibrary = false;
+  isExecutable = true;
+  executableHaskellDepends = [ base hakyll ];
+  license = "unknown";
+  mainProgram = "site";
+}