1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gstreamer python: do not use top-level python packages

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

View file

@ -1,9 +1,11 @@
{ fetchurl, stdenv, pkgconfig, python { fetchurl, stdenv, pkgconfig, pythonPackages
, gst-plugins-base, pygobject3 , gst-plugins-base
, ncurses , ncurses
}: }:
stdenv.mkDerivation rec { let
inherit (pythonPackages) python pygobject3;
in stdenv.mkDerivation rec {
name = "gst-python-1.8.2"; name = "gst-python-1.8.2";
src = fetchurl { src = fetchurl {