aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2018-09-16 13:51:46 +0200
committerlassulus <lassulus@lassul.us>2018-09-16 13:51:46 +0200
commit04bc3ffcf11a672f13c0c8f502d664e16c2a085c (patch)
treea480d3997f54b015c39c016ef2833d47bfcf1e1d /shell.nix
parentb7ca1df32161008623115c182bd13fdf98cb0ea9 (diff)
cleanup .nix files
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..0c33427
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,9 @@
+with import <nixpkgs> {};
+with pkgs.python3Packages;
+
+buildPythonPackage rec {
+ name = "buildbot-master";
+ src = ./.;
+ propagatedBuildInputs = [ docopt ];
+}
+