summary refs log tree commit diff
path: root/nix/python-flipdots.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/python-flipdots.nix')
-rw-r--r--nix/python-flipdots.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/python-flipdots.nix b/nix/python-flipdots.nix
index 88d1324..6ba0ba3 100644
--- a/nix/python-flipdots.nix
+++ b/nix/python-flipdots.nix
@@ -1,12 +1,12 @@
 { buildPythonPackage, pillow, numpy, flask
-, rootSrc
+, getSrc
 }:
 
 buildPythonPackage {
   name = "flipdots";
   version = "unstable";
 
-  src = rootSrc + "/third_party/flipdots";
+  src = getSrc "third_party/flipdots";
 
   propagatedBuildInputs = [ flask pillow numpy ];