flac: Add description
This commit is contained in:
parent
165257a8ee
commit
dbe524fe3f
@ -1,24 +1,25 @@
|
|||||||
{stdenv, fetchurl, libogg}:
|
{ stdenv, fetchurl, libogg }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "flac-1.2.1";
|
name = "flac-1.2.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/flac/flac-1.2.1.tar.gz;
|
url = mirror://sourceforge/flac/flac-1.2.1.tar.gz;
|
||||||
sha256 = "1pry5lgzfg57pga1zbazzdd55fkgk3v5qy4axvrbny5lrr5s8dcn";
|
sha256 = "1pry5lgzfg57pga1zbazzdd55fkgk3v5qy4axvrbny5lrr5s8dcn";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [libogg];
|
buildInputs = [ libogg ];
|
||||||
|
|
||||||
|
patches =
|
||||||
|
[ # Fix for building on GCC 4.3.
|
||||||
|
(fetchurl {
|
||||||
|
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-libs/flac/files/flac-1.2.1-gcc-4.3-includes.patch?rev=1.1";
|
||||||
|
sha256 = "1m6ql5vyjb2jlp5qiqp6w0drq1m6x6y3i1dnl5ywywl3zd36k0mr";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fix for building on GCC 4.3.
|
|
||||||
(fetchurl {
|
|
||||||
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-libs/flac/files/flac-1.2.1-gcc-4.3-includes.patch?rev=1.1";
|
|
||||||
sha256 = "1m6ql5vyjb2jlp5qiqp6w0drq1m6x6y3i1dnl5ywywl3zd36k0mr";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://flac.sourceforge.net;
|
homepage = http://flac.sourceforge.net;
|
||||||
|
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user