mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
11aa06c574
So that the tools become useable. The cool thing about wrapping them like this (looping over $NIX_PROFILES) is that they will work on non-NixOS systems too, given that $NIX_PROFILES is set correctly. If you want the old (pure?) behaviour, just run gst-launch etc. with empty $NIX_PROFILES.
35 lines
1012 B
Nix
35 lines
1012 B
Nix
{ stdenv, fetchurl, pkgconfig, perl, bison, flex, python, gobjectIntrospection
|
|
, glib, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gstreamer-1.4.5";
|
|
|
|
meta = {
|
|
description = "Open source multimedia framework";
|
|
homepage = "http://gstreamer.freedesktop.org";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/src/gstreamer/${name}.tar.xz";
|
|
sha256 = "1bmhbhak6i5wmmb6w86jyyv8lax4gdq983la4lk4a0krz6kim020";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig perl bison flex python gobjectIntrospection makeWrapper
|
|
];
|
|
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
postInstall = ''
|
|
for prog in "$out/bin/"*; do
|
|
wrapProgram "$prog" --prefix GST_PLUGIN_SYSTEM_PATH : "\$(unset _tmp; for profile in \$NIX_PROFILES; do _tmp="\$profile/lib/gstreamer-1.0''$\{_tmp:+:\}\$_tmp"; done; printf "\$_tmp")"
|
|
done
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
}
|