1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 16:11:58 +00:00

gst-python: do not use top-level python packages

This commit is contained in:
Frederik Rietdijk 2016-09-25 23:13:03 +02:00
parent be9956d007
commit 1dd912ab03

View file

@ -1,8 +1,9 @@
{ fetchurl, stdenv, pkgconfig, python, gstreamer
, gst_plugins_base, pygobject2
{ fetchurl, stdenv, pkgconfig, pythonPackages, gstreamer, gst_plugins_base
}:
stdenv.mkDerivation rec {
let
inherit (pythonPackages) python pygobject2;
in stdenv.mkDerivation rec {
name = "gst-python-0.10.22";
src = fetchurl {