nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / tr / tremor / package.nix
blobe8fb12f8ab9ed5e98e853d1dc7f209390cfa3507
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   autoreconfHook,
6   pkg-config,
7   libogg,
8 }:
10 stdenv.mkDerivation {
11   pname = "tremor";
12   version = "unstable-2018-03-16";
14   src = fetchFromGitLab {
15     owner = "xiph";
16     repo = "tremor";
17     domain = "gitlab.xiph.org";
18     rev = "562307a4a7082e24553f3d2c55dab397a17c4b4f";
19     sha256 = "0m07gq4zfgigsiz8b518xyb19v7qqp76qmp7lb262825vkqzl3zq";
20   };
22   outputs = [
23     "out"
24     "dev"
25   ];
27   configureFlags = lib.optional (
28     stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17"
29   ) "LDFLAGS=-Wl,--undefined-version";
31   nativeBuildInputs = [
32     autoreconfHook
33     pkg-config
34   ];
35   propagatedBuildInputs = [ libogg ];
37   preConfigure = ''
38     sed -i /XIPH_PATH_OGG/d configure
39   '';
41   meta = {
42     homepage = "https://xiph.org/tremor/";
43     description = "Fixed-point version of the Ogg Vorbis decoder";
44     license = lib.licenses.bsd3;
45     platforms = lib.platforms.unix;
46   };