tremor: svn-17866 -> git-562307a

This updates tremor to a newer version and it's new home in a git
repository. It hasn't been updated since 2011 and is used as a build
input for other packages.

Also fixes CVE-2018-5146 [1].

[1] http://seclists.org/oss-sec/2018/q1/243
This commit is contained in:
Andreas Rammhold 2018-03-17 19:25:51 +01:00
parent 879ffc06fe
commit c89ec027eb
No known key found for this signature in database
GPG key ID: E432E410B5E48C86

View file

@ -1,12 +1,12 @@
{ stdenv, fetchsvn, autoreconfHook, pkgconfig, libogg }:
{ stdenv, fetchgit, autoreconfHook, pkgconfig, libogg }:
stdenv.mkDerivation rec {
name = "tremor-svn-${src.rev}";
name = "tremor-git-${src.rev}";
src = fetchsvn {
url = http://svn.xiph.org/trunk/Tremor;
rev = "17866";
sha256 = "161411cbefa1527da7a8fc087e78d8e21d19143d3a6eb42fb281e5026aad7568";
src = fetchgit {
url = https://git.xiph.org/tremor.git;
rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];