about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-11-25 10:02:57 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-01-11 18:25:10 +0100
commit472c25cfa2882ec3279555ef709e638b3f5edce5 (patch)
treedd5be8c1b28d930c77771b140266fce5313d1641
parent7a109e63108de4ab59010041f0a8a7f19a14a318 (diff)
downloadnixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar.gz
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar.bz2
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar.lz
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar.xz
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.tar.zst
nixlib-472c25cfa2882ec3279555ef709e638b3f5edce5.zip
zbar: use python2
-rw-r--r--pkgs/tools/graphics/zbar/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix
index 66f61d9a459e..87bb4923b8ad 100644
--- a/pkgs/tools/graphics/zbar/default.nix
+++ b/pkgs/tools/graphics/zbar/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchurl, imagemagickBig, pkgconfig, pythonPackages, perl
+{ stdenv, fetchurl, imagemagickBig, pkgconfig, python2Packages, perl
 , libX11, libv4l, qt4, lzma, gtk2, fetchpatch, autoreconfHook
 }:
 
 let
-  inherit (pythonPackages) pygtk python;
+  inherit (python2Packages) pygtk python;
 in stdenv.mkDerivation rec {
   name = "${pname}-${version}";
   pname = "zbar";