mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
596 B
Nix
24 lines
596 B
Nix
{ stdenv, fetchurl, libogg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "flac-1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/flac/${name}.tar.xz";
|
|
sha256 = "0gymm2j3276kr9nz6vmgfwsdfrq6c449n40a0mzz8h6wc7nw7kwi";
|
|
};
|
|
|
|
buildInputs = [ libogg ];
|
|
|
|
#doCheck = true; # takes lots of time
|
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://xiph.org/flac/;
|
|
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
|
|
platforms = platforms.all;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|