about summary refs log tree commit diff
path: root/default.nix
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel@dybiec.info>2023-04-19 21:46:50 +0100
committerPaweł Dybiec <pawel@dybiec.info>2023-04-19 21:46:50 +0100
commit1e04d732ba24536ce98b8a483eb95e283c7cd9ef (patch)
treee585b885526876012217504c1b979575a96e6c00 /default.nix
parentUpdate social media,employer and some wording (diff)
Nixify
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";
+}