nixpkgs/pkgs/by-name/fa/faad2/package.nix

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

48 lines
843 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
cmake,
# for passthru.tests
gst_all_1,
mpd,
ocamlPackages,
vlc,
2015-02-08 22:02:17 +00:00
}:
2015-02-08 22:02:17 +00:00
stdenv.mkDerivation rec {
pname = "faad2";
version = "2.11.1";
src = fetchFromGitHub {
owner = "knik0";
repo = "faad2";
rev = version;
hash = "sha256-E6oe7yjYy1SJo8xQkyUk1sSucKDMPxwUFVSAyrf4Pd8=";
};
outputs = [
"out"
"dev"
"man"
];
nativeBuildInputs = [ cmake ];
passthru.tests = {
inherit mpd vlc;
inherit (gst_all_1) gst-plugins-bad;
ocaml-faad = ocamlPackages.faad;
};
meta = with lib; {
description = "Open source MPEG-4 and MPEG-2 AAC decoder";
homepage = "https://sourceforge.net/projects/faac/";
2022-02-06 17:10:44 +00:00
license = licenses.gpl2Plus;
2015-02-08 22:02:17 +00:00
maintainers = with maintainers; [ codyopel ];
mainProgram = "faad";
2015-02-08 22:02:17 +00:00
platforms = platforms.all;
};
}