aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-06-30 22:33:07 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-06-30 22:33:07 +0100
commit5aff5b868af684b13960119119ea38ec9ccc915a (patch)
treec2b4a112ebfd8adce72118d9470e74b822142a20
parentaa5c491c118770e45c7736c8c26b6e19cf779641 (diff)
Replacing python virtualenv with nix shell file
-rw-r--r--default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..0237c03
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,13 @@
+with import <nixpkgs> {};
+
+stdenv.mkDerivation {
+ name = "website";
+
+ buildInputs = with pkgs; [
+ python3
+ ] ++ (with pkgs.python3Packages; [
+ pelican
+ markdown
+ webassets
+ ]);
+}