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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
636 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, libogg }:
stdenv.mkDerivation rec {
pname = "flac";
2022-02-24 00:18:33 +00:00
version = "1.3.4";
2012-08-23 17:57:31 +00:00
src = fetchurl {
url = "http://downloads.xiph.org/releases/flac/${pname}-${version}.tar.xz";
2022-02-24 00:18:33 +00:00
sha256 = "0dz7am8kbc97a6afml1h4yp085274prg8j7csryds8m3fmz61w4g";
};
2012-08-23 17:57:31 +00:00
buildInputs = [ libogg ];
#doCheck = true; # takes lots of time
outputs = [ "bin" "dev" "out" "man" "doc" ];
meta = with lib; {
homepage = "https://xiph.org/flac/";
2012-08-23 17:57:31 +00:00
description = "Library and tools for encoding and decoding the FLAC lossless audio file format";
2014-01-28 17:11:00 +00:00
platforms = platforms.all;
2018-08-22 22:01:38 +00:00
license = licenses.bsd3;
};
}