blob: 6ae95b481bd533301a078669f29a731a3d1f4eff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{vlc, autoconf, automake, libtool, stdenv, fetchurl, gettext, m4}:
with stdenv.lib;
vlc.overrideDerivation (o: rec {
buildInputs = [autoconf automake libtool gettext m4] ++ o.buildInputs;
version = "3.0.0-20161224-0237";
preConfigure = ''export BUILDCC=gcc; libtoolize && ./bootstrap; '' + o.preConfigure;
src = fetchurl {
url = "https://nightlies.videolan.org/build/source/vlc-${version}-git.tar.xz";
sha256 = "0hbn2psqpr4cg9hhphdn4sqm7k5syfi7yflhf9ag33cl7zrqd83x";
};
})
|