nixpkgs/pkgs/applications/audio/flac/default.nix

26 lines
709 B
Nix
Raw Normal View History

2012-08-23 17:57:31 +00:00
{ stdenv, fetchurl, libogg }:
stdenv.mkDerivation rec {
name = "flac-1.2.1";
2012-08-23 17:57:31 +00:00
src = fetchurl {
url = mirror://sourceforge/flac/flac-1.2.1.tar.gz;
sha256 = "1pry5lgzfg57pga1zbazzdd55fkgk3v5qy4axvrbny5lrr5s8dcn";
};
2012-08-23 17:57:31 +00:00
buildInputs = [ libogg ];
patches =
[ # Fix for building on GCC 4.3.
(fetchurl {
url = "http://sourceforge.net/p/flac/patches/_discuss/thread/9d4c7504/d8ea/attachment/flac-1.2.1-gcc-4.3-includes.patch";
2012-08-23 17:57:31 +00:00
sha256 = "1m6ql5vyjb2jlp5qiqp6w0drq1m6x6y3i1dnl5ywywl3zd36k0mr";
})
];
meta = {
homepage = http://flac.sourceforge.net;
2012-08-23 17:57:31 +00:00
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
};
}