summary refs log tree commit diff
path: root/pkgs/development/libraries/libredwg
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 10:56:56 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:23 +0200
commit939a00f04b5493965d1eb6d7d741278137f6b2b6 (patch)
tree62fa4e2e49cfc9ea9e35ca5c32433bdb5372c72a /pkgs/development/libraries/libredwg
parentd20a05e9630bce28b77d8f6733ef9b78c00c85d8 (diff)
libredwg: python is optional
Diffstat (limited to 'pkgs/development/libraries/libredwg')
-rw-r--r--pkgs/development/libraries/libredwg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libredwg/default.nix b/pkgs/development/libraries/libredwg/default.nix
index 5fca199acb0a5..e5123fa61af31 100644
--- a/pkgs/development/libraries/libredwg/default.nix
+++ b/pkgs/development/libraries/libredwg/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, texinfo, pcre2
-, enablePython ? false, python, swig, libxml2, ncurses
+, enablePython ? false, python ? null, swig, libxml2, ncurses
 }:
 let
   isPython3 = enablePython && python.pythonAtLeast "3";