bbe8c1e593
https://nixos.org/nixpkgs/manual/#sec-package-naming I forgot to include this commit in the parent merge.
26 lines
680 B
Nix
26 lines
680 B
Nix
{ stdenv, fetchgit, autoreconfHook, pkgconfig, libogg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tremor-unstable-2018-03-16";
|
|
|
|
src = fetchgit {
|
|
url = https://git.xiph.org/tremor.git;
|
|
rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
|
|
sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
propagatedBuildInputs = [ libogg ];
|
|
|
|
preConfigure = ''
|
|
sed -i /XIPH_PATH_OGG/d configure
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://xiph.org/tremor/;
|
|
description = "Fixed-point version of the Ogg Vorbis decoder";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|