about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-07-16 09:06:21 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-07-16 09:07:10 +0100
commitf1b45f7d4136a04526d5b4ab09664e1dc005d38d (patch)
tree1f76c06f37df32b8c73eaf77e3ba4b0b66d3fc5f /pkgs/development
parentdf929d62166676bc7630e7e6a4f0241c408fd647 (diff)
lttng-ust: add missing python dependency
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/lttng-ust/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/lttng-ust/default.nix b/pkgs/development/tools/misc/lttng-ust/default.nix
index 8994d0c3512b3..3b294d1375744 100644
--- a/pkgs/development/tools/misc/lttng-ust/default.nix
+++ b/pkgs/development/tools/misc/lttng-ust/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, liburcu }:
+{ stdenv, fetchurl, liburcu, python }:
 
 # NOTE:
 #   ./configure ...
@@ -20,7 +20,11 @@ stdenv.mkDerivation rec {
     sha256 = "196snxrs1p205jz566rwxh7dqzsa3k16c7vm6k7i3gdvrmkx54dq";
   };
 
-  buildInputs = [ liburcu ];
+  buildInputs = [ liburcu python ];
+
+  preConfigure = ''
+    patchShebangs .
+  '';
 
   meta = with stdenv.lib; {
     description = "LTTng Userspace Tracer libraries";